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

Downloads of v 2.6.0:

209

Last Update:

01 Oct 2022

Package Maintainer(s):

Software Author(s):

  • Igor Abade V. Leite

Tags:

tfscmdlets tfs vsts powershell azure azuredevops devops alm teamfoundationserver

TfsCmdlets

  • 1
  • 2
  • 3

2.6.0 | Updated: 01 Oct 2022

Downloads:

4,158

Downloads of v 2.6.0:

209

Maintainer(s):

Software Author(s):

  • Igor Abade V. Leite

TfsCmdlets 2.6.0

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

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


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

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


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

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


4. If applicable - Chocolatey configuration/installation

See infrastructure management matrix for Chocolatey configuration elements and examples.

Package Approved

This package was approved as a trusted package on 01 Oct 2022.

Description

PowerShell Cmdlets for Azure DevOps and Team Foundation Server


tools\LICENSE.txt
The MIT License (MIT)

Copyright (c) 2014 Igor Abade de Vasconcellos Leite

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

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

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



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\LICENSE.md
The MIT License (MIT)

Copyright (c) 2014 Igor Abade de Vasconcellos Leite

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

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

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

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

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

## What is TfsCmdlets?

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

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

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

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

## Quick start guide

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

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

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

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

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

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

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

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

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

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

## How to install

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

### PowerShell Gallery

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

Open an elevated PowerShell prompt and type:

```PowerShell
Install-Module TfsCmdlets
```

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

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

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

### Windows Package Manager (winget)

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

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

```PowerShell
winget install TfsCmdlets
```

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

### Chocolatey

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

```PowerShell
choco install TfsCmdlets
```

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

### Nuget

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

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

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

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

### Offline installation

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

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

#### Full installer (MSI-based)

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

**To install the full installer**:

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

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

**To uninstall the full installer**:

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

#### Portable installer

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

**To install the portable installer**:

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

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

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

```PowerShell
Import-Module TfsCmdlets
```

**To uninstall the portable installer**:

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

## Contribution Guidelines

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

## Additional Information

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

## Version 2.6.0 (_30/Sep/2022_)

This release fixes a bug in `Get-TfsWorkItemQuery` and `Get-TfsWorkItemQueryFolder`, and adds two new cmdlets.

## New cmdlets

* `Undo-TfsWorkItemQueryRemoval` and `Undo-TfsWorkItemQueryFolderRemoval` allow you to undo the deletion of a query or query folder. This is useful when you accidentally delete a query or query folder and want to restore it.

To restore a deleted query:

```powershell
# You can either pipe the deleted query from Get-TfsWorkItemQuery to Undo-TfsWorkItemQueryRemoval...
Get-TfsWorkItemQuery 'My Deleted Query' -Scope Personal -Deleted | Undo-TfsWorkItemQueryRemoval

# ... or you can specify the query directly when calling Undo-TfsWorkItemQueryRemoval
Undo-TfsWorkItemQueryRemoval 'My Deleted Query' -Scope Personal
```

The same applies to query folders - with the distinction that folder can be restored recursively by specifying the `-Recursive` switch. When `-Recursive` is omitted, only the folder itself is restored, without any of its contents. You can then restore its contents by issuing further calls to `Undo-TfsWorkItemQueryRemoval` and/or `Undo-TfsWorkItemQueryFolderRemoval`.

```powershell
# You can either pipe the deleted folder from Get-TfsWorkItemQueryFolder to Undo-TfsWorkItemQueryFolderRemoval...
Get-TfsWorkItemQueryFolder 'My Deleted Folder' -Scope Personal -Deleted | Undo-TfsWorkItemQueryRemoval -Recursive

# ... or you can specify the folder directly when calling Undo-TfsWorkItemQueryFolderRemoval
Undo-TfsWorkItemQueryFolderRemoval 'My Deleted Folder' -Scope Personal -Recursive
```

## Fixes

* Fixes a bug in `Get-TfsWorkItemQuery` and `Get-TfsWorkItemQueryFolder` where the `-Deleted` switch was not respected and deleted items would not be returned.

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

## Previous Versions

### Version 2.5.1 (_22/Aug/2022_)

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

### Version 2.5.0 (_03/Aug/2022_)

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

### Version 2.4.1 (_20/Jul/2022_)

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

### Version 2.4.0 (_23/May/2022_)

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

### Version 2.3.1 (_08/Apr/2022_)

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

See release notes [here](Docs/ReleaseNotes/1.0.0-alpha3.md).
tools\TfsCmdlets\TfsCmdlets.dll-Help.xml
<?xml version="1.0" encoding="utf-8"?>
<helpItems schema="maml" xmlns="http://msh">
  <!-- Cmdlet: Copy-TfsArea -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="WorkItem.AreasIterations">
    <command:details>
      <command:name>Copy-TfsArea</command:name>
      <command:verb>Copy</command:verb>
      <command:noun>TfsArea</command:noun>
      <maml:description>
        <maml:para>Copies one or more Work Item Areas recursively </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Copy-TfsArea</maml:name>
        <!-- Parameter: Node -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Path,Area">
          <maml:name>Node</maml:name>
          <maml:description>
            <maml:para>Specifies the name, URI or path of a Work Area. Wildcards are supported. When omitted, all Areas in the given Team Project are returned. To supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional. When supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>\**</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Destination -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="1" aliases="CopyTo">
          <maml:name>Destination</maml:name>
          <maml:description>
            <maml:para>Specifies the name and/or path of the destination parent node. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: DestinationProject -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>DestinationProject</maml:name>
          <maml:description>
            <maml:para>Specifies the name and/or path of the destination team project. When omitted, copies the area to the same team project. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Force -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Force</maml:name>
          <maml:description>
            <maml:para>Allows the cmdlet to create destination parent node(s) if they're missing. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Recurse -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Recurse</maml:name>
          <maml:description>
            <maml:para>Copies nodes recursively. When omitted, sub-nodes are not copied. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Node -->
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Path,Area">
        <maml:name>Node</maml:name>
        <maml:description>
          <maml:para>Specifies the name, URI or path of a Work Area. Wildcards are supported. When omitted, all Areas in the given Team Project are returned. To supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional. When supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>\**</dev:defaultValue>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Path,Area">
        <maml:name>Path</maml:name>
        <maml:description>
          <maml:para>Specifies the name, URI or path of a Work Area. Wildcards are supported. When omitted, all Areas in the given Team Project are returned. To supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional. When supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
          <maml:para>This is an alias of the Node parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>\**</dev:defaultValue>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Path,Area">
        <maml:name>Area</maml:name>
        <maml:description>
          <maml:para>Specifies the name, URI or path of a Work Area. Wildcards are supported. When omitted, all Areas in the given Team Project are returned. To supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional. When supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
          <maml:para>This is an alias of the Node parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>\**</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Destination -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="1" aliases="CopyTo">
        <maml:name>Destination</maml:name>
        <maml:description>
          <maml:para>Specifies the name and/or path of the destination parent node. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="true" globbing="false" pipelineInput="false" position="1" aliases="CopyTo">
        <maml:name>CopyTo</maml:name>
        <maml:description>
          <maml:para>Specifies the name and/or path of the destination parent node. </maml:para>
          <maml:para>This is an alias of the Destination parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: DestinationProject -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>DestinationProject</maml:name>
        <maml:description>
          <maml:para>Specifies the name and/or path of the destination team project. When omitted, copies the area to the same team project. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Force -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Force</maml:name>
        <maml:description>
          <maml:para>Allows the cmdlet to create destination parent node(s) if they're missing. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Recurse -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Recurse</maml:name>
        <maml:description>
          <maml:para>Copies nodes recursively. When omitted, sub-nodes are not copied. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Organization</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          <maml:para>This is an alias of the Collection parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Server -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Server</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the name, URI or path of a Work Area. Wildcards are supported. When omitted, all Areas in the given Team Project are returned. To supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional. When supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: ClassificationNode -->
      <command:returnValue>
        <dev:type>
          <maml:name>TfsCmdlets.Models.ClassificationNode</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/WorkItem/AreasIterations/Copy-TfsArea</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Get-TfsArea -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="WorkItem.AreasIterations">
    <command:details>
      <command:name>Get-TfsArea</command:name>
      <command:verb>Get</command:verb>
      <command:noun>TfsArea</command:noun>
      <maml:description>
        <maml:para>Gets one or more Work Item Areas from a given Team Project. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Get-TfsArea</maml:name>
        <!-- Parameter: Node -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Path,Area">
          <maml:name>Node</maml:name>
          <maml:description>
            <maml:para>Specifies the name, URI or path of a Work Area. Wildcards are supported. When omitted, all Areas in the given Team Project are returned. To supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional. When supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>\**</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Node -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Path,Area">
        <maml:name>Node</maml:name>
        <maml:description>
          <maml:para>Specifies the name, URI or path of a Work Area. Wildcards are supported. When omitted, all Areas in the given Team Project are returned. To supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional. When supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>\**</dev:defaultValue>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Path,Area">
        <maml:name>Path</maml:name>
        <maml:description>
          <maml:para>Specifies the name, URI or path of a Work Area. Wildcards are supported. When omitted, all Areas in the given Team Project are returned. To supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional. When supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
          <maml:para>This is an alias of the Node parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>\**</dev:defaultValue>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Path,Area">
        <maml:name>Area</maml:name>
        <maml:description>
          <maml:para>Specifies the name, URI or path of a Work Area. Wildcards are supported. When omitted, all Areas in the given Team Project are returned. To supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional. When supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
          <maml:para>This is an alias of the Node parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>\**</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Organization</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          <maml:para>This is an alias of the Collection parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Server -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Server</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: ClassificationNode -->
      <command:returnValue>
        <dev:type>
          <maml:name>TfsCmdlets.Models.ClassificationNode</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <command:examples>
      <command:example>
        <maml:title>----------  EXAMPLE 1  ----------</maml:title>
        <dev:code>PS&gt; Get-TfsArea</dev:code>
        <dev:remarks>
          <maml:para>Returns all area paths in the currently connected Team Project (as defined by a previous call to Connect-TfsTeamProject)</maml:para>
          <maml:para></maml:para>
        </dev:remarks>
      </command:example>
      <command:example>
        <maml:title>----------  EXAMPLE 2  ----------</maml:title>
        <dev:code>PS&gt; Get-TfsArea '\**\Support' -Project Tailspin</dev:code>
        <dev:remarks>
          <maml:para>Performs a recursive search and returns all area paths named 'Support' that may exist in a team project called Tailspin</maml:para>
          <maml:para></maml:para>
        </dev:remarks>
      </command:example>
    </command:examples>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/WorkItem/AreasIterations/Get-TfsArea</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Move-TfsArea -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="WorkItem.AreasIterations">
    <command:details>
      <command:name>Move-TfsArea</command:name>
      <command:verb>Move</command:verb>
      <command:noun>TfsArea</command:noun>
      <maml:description>
        <maml:para>Moves one or more Work Item Areas to a new parent node </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Move-TfsArea</maml:name>
        <!-- Parameter: Node -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Path,Area">
          <maml:name>Node</maml:name>
          <maml:description>
            <maml:para>Specifies the name, URI or path of a Work Area. Wildcards are supported. When omitted, all Areas in the given Team Project are returned. To supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional. When supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>\**</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Destination -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="1" aliases="MoveTo">
          <maml:name>Destination</maml:name>
          <maml:description>
            <maml:para>Specifies the name and/or path of the destination parent node. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Force -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Force</maml:name>
          <maml:description>
            <maml:para>Allows the cmdlet to create destination parent node(s) if they're missing. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Node -->
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Path,Area">
        <maml:name>Node</maml:name>
        <maml:description>
          <maml:para>Specifies the name, URI or path of a Work Area. Wildcards are supported. When omitted, all Areas in the given Team Project are returned. To supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional. When supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>\**</dev:defaultValue>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Path,Area">
        <maml:name>Path</maml:name>
        <maml:description>
          <maml:para>Specifies the name, URI or path of a Work Area. Wildcards are supported. When omitted, all Areas in the given Team Project are returned. To supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional. When supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
          <maml:para>This is an alias of the Node parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>\**</dev:defaultValue>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Path,Area">
        <maml:name>Area</maml:name>
        <maml:description>
          <maml:para>Specifies the name, URI or path of a Work Area. Wildcards are supported. When omitted, all Areas in the given Team Project are returned. To supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional. When supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
          <maml:para>This is an alias of the Node parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>\**</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Destination -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="1" aliases="MoveTo">
        <maml:name>Destination</maml:name>
        <maml:description>
          <maml:para>Specifies the name and/or path of the destination parent node. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="true" globbing="false" pipelineInput="false" position="1" aliases="MoveTo">
        <maml:name>MoveTo</maml:name>
        <maml:description>
          <maml:para>Specifies the name and/or path of the destination parent node. </maml:para>
          <maml:para>This is an alias of the Destination parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Force -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Force</maml:name>
        <maml:description>
          <maml:para>Allows the cmdlet to create destination parent node(s) if they're missing. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Organization</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          <maml:para>This is an alias of the Collection parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Server -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Server</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the name, URI or path of a Work Area. Wildcards are supported. When omitted, all Areas in the given Team Project are returned. To supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional. When supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: ClassificationNode -->
      <command:returnValue>
        <dev:type>
          <maml:name>TfsCmdlets.Models.ClassificationNode</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/WorkItem/AreasIterations/Move-TfsArea</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: New-TfsArea -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="WorkItem.AreasIterations">
    <command:details>
      <command:name>New-TfsArea</command:name>
      <command:verb>New</command:verb>
      <command:noun>TfsArea</command:noun>
      <maml:description>
        <maml:para>Creates a new Work Item Area in the given Team Project. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>New-TfsArea</maml:name>
        <!-- Parameter: Node -->
        <command:parameter required="true" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Area,Path">
          <maml:name>Node</maml:name>
          <maml:description>
            <maml:para>Specifies the path of the new Area. When supplying a path, use a backslash ("\\") between the path segments. Leading and trailing backslashes are optional. The last segment in the path will be the area name. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Force -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Force</maml:name>
          <maml:description>
            <maml:para>Allows the cmdlet to create parent nodes if they're missing. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Passthru -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Passthru</maml:name>
          <maml:description>
            <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Node -->
      <command:parameter required="true" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Area,Path">
        <maml:name>Node</maml:name>
        <maml:description>
          <maml:para>Specifies the path of the new Area. When supplying a path, use a backslash ("\\") between the path segments. Leading and trailing backslashes are optional. The last segment in the path will be the area name. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="true" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Area,Path">
        <maml:name>Area</maml:name>
        <maml:description>
          <maml:para>Specifies the path of the new Area. When supplying a path, use a backslash ("\\") between the path segments. Leading and trailing backslashes are optional. The last segment in the path will be the area name. </maml:para>
          <maml:para>This is an alias of the Node parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="true" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Area,Path">
        <maml:name>Path</maml:name>
        <maml:description>
          <maml:para>Specifies the path of the new Area. When supplying a path, use a backslash ("\\") between the path segments. Leading and trailing backslashes are optional. The last segment in the path will be the area name. </maml:para>
          <maml:para>This is an alias of the Node parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Force -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Force</maml:name>
        <maml:description>
          <maml:para>Allows the cmdlet to create parent nodes if they're missing. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Passthru -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Passthru</maml:name>
        <maml:description>
          <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Organization</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          <maml:para>This is an alias of the Collection parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Server -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Server</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the path of the new Area. When supplying a path, use a backslash ("\\") between the path segments. Leading and trailing backslashes are optional. The last segment in the path will be the area name. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: ClassificationNode -->
      <command:returnValue>
        <dev:type>
          <maml:name>TfsCmdlets.Models.ClassificationNode</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/WorkItem/AreasIterations/New-TfsArea</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Remove-TfsArea -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="WorkItem.AreasIterations">
    <command:details>
      <command:name>Remove-TfsArea</command:name>
      <command:verb>Remove</command:verb>
      <command:noun>TfsArea</command:noun>
      <maml:description>
        <maml:para>Deletes one or more Work Item Areas from a given Team Project. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Remove-TfsArea</maml:name>
        <!-- Parameter: Node -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Path,Area">
          <maml:name>Node</maml:name>
          <maml:description>
            <maml:para>Specifies the name, URI or path of a Work Area. Wildcards are supported. When omitted, all Areas in the given Team Project are returned. To supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional. When supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: MoveTo -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="1" aliases="NewPath">
          <maml:name>MoveTo</maml:name>
          <maml:description>
            <maml:para>Specifies the new parent node for the work items currently assigned to the node being deleted, if any. When omitted, defaults to the root node (the "\" node, at the team project level). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>\</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Recurse -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Recurse</maml:name>
          <maml:description>
            <maml:para>Removes node(s) recursively. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Node -->
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Path,Area">
        <maml:name>Node</maml:name>
        <maml:description>
          <maml:para>Specifies the name, URI or path of a Work Area. Wildcards are supported. When omitted, all Areas in the given Team Project are returned. To supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional. When supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Path,Area">
        <maml:name>Path</maml:name>
        <maml:description>
          <maml:para>Specifies the name, URI or path of a Work Area. Wildcards are supported. When omitted, all Areas in the given Team Project are returned. To supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional. When supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
          <maml:para>This is an alias of the Node parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Path,Area">
        <maml:name>Area</maml:name>
        <maml:description>
          <maml:para>Specifies the name, URI or path of a Work Area. Wildcards are supported. When omitted, all Areas in the given Team Project are returned. To supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional. When supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
          <maml:para>This is an alias of the Node parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: MoveTo -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="1" aliases="NewPath">
        <maml:name>MoveTo</maml:name>
        <maml:description>
          <maml:para>Specifies the new parent node for the work items currently assigned to the node being deleted, if any. When omitted, defaults to the root node (the "\" node, at the team project level). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>\</dev:defaultValue>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="1" aliases="NewPath">
        <maml:name>NewPath</maml:name>
        <maml:description>
          <maml:para>Specifies the new parent node for the work items currently assigned to the node being deleted, if any. When omitted, defaults to the root node (the "\" node, at the team project level). </maml:para>
          <maml:para>This is an alias of the MoveTo parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>\</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Recurse -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Recurse</maml:name>
        <maml:description>
          <maml:para>Removes node(s) recursively. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Organization</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          <maml:para>This is an alias of the Collection parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Server -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Server</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the name, URI or path of a Work Area. Wildcards are supported. When omitted, all Areas in the given Team Project are returned. To supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional. When supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: ClassificationNode -->
      <command:returnValue>
        <dev:type>
          <maml:name>TfsCmdlets.Models.ClassificationNode</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/WorkItem/AreasIterations/Remove-TfsArea</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Rename-TfsArea -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="WorkItem.AreasIterations">
    <command:details>
      <command:name>Rename-TfsArea</command:name>
      <command:verb>Rename</command:verb>
      <command:noun>TfsArea</command:noun>
      <maml:description>
        <maml:para>Renames an area path. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Rename-TfsArea</maml:name>
        <!-- Parameter: Node -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Path,Area">
          <maml:name>Node</maml:name>
          <maml:description>
            <maml:para>Specifies the name, URI or path of a Work Area. Wildcards are supported. When omitted, all Areas in the given Team Project are returned. To supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional. When supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: NewName -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="1">
          <maml:name>NewName</maml:name>
          <maml:description>
            <maml:para>Specifies the new name of the item. Enter only a name - i.e., for items that support paths, do not enter a path and name. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Node -->
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Path,Area">
        <maml:name>Node</maml:name>
        <maml:description>
          <maml:para>Specifies the name, URI or path of a Work Area. Wildcards are supported. When omitted, all Areas in the given Team Project are returned. To supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional. When supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Path,Area">
        <maml:name>Path</maml:name>
        <maml:description>
          <maml:para>Specifies the name, URI or path of a Work Area. Wildcards are supported. When omitted, all Areas in the given Team Project are returned. To supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional. When supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
          <maml:para>This is an alias of the Node parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Path,Area">
        <maml:name>Area</maml:name>
        <maml:description>
          <maml:para>Specifies the name, URI or path of a Work Area. Wildcards are supported. When omitted, all Areas in the given Team Project are returned. To supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional. When supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
          <maml:para>This is an alias of the Node parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: NewName -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="1">
        <maml:name>NewName</maml:name>
        <maml:description>
          <maml:para>Specifies the new name of the item. Enter only a name - i.e., for items that support paths, do not enter a path and name. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Organization</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          <maml:para>This is an alias of the Collection parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Server -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Server</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the name, URI or path of a Work Area. Wildcards are supported. When omitted, all Areas in the given Team Project are returned. To supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional. When supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: ClassificationNode -->
      <command:returnValue>
        <dev:type>
          <maml:name>TfsCmdlets.Models.ClassificationNode</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/WorkItem/AreasIterations/Rename-TfsArea</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Test-TfsArea -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="WorkItem.AreasIterations">
    <command:details>
      <command:name>Test-TfsArea</command:name>
      <command:verb>Test</command:verb>
      <command:noun>TfsArea</command:noun>
      <maml:description>
        <maml:para>Determines whether the specified Work Area exist. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Test-TfsArea</maml:name>
        <!-- Parameter: Node -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Area,Path">
          <maml:name>Node</maml:name>
          <maml:description>
            <maml:para>Specifies the name, URI or path of a Work Area. Wildcards are supported. When omitted, all Areas in the given Team Project are returned. To supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional. When supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Node -->
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Area,Path">
        <maml:name>Node</maml:name>
        <maml:description>
          <maml:para>Specifies the name, URI or path of a Work Area. Wildcards are supported. When omitted, all Areas in the given Team Project are returned. To supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional. When supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Area,Path">
        <maml:name>Area</maml:name>
        <maml:description>
          <maml:para>Specifies the name, URI or path of a Work Area. Wildcards are supported. When omitted, all Areas in the given Team Project are returned. To supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional. When supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
          <maml:para>This is an alias of the Node parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Area,Path">
        <maml:name>Path</maml:name>
        <maml:description>
          <maml:para>Specifies the name, URI or path of a Work Area. Wildcards are supported. When omitted, all Areas in the given Team Project are returned. To supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional. When supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
          <maml:para>This is an alias of the Node parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Organization</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          <maml:para>This is an alias of the Collection parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Server -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Server</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the name, URI or path of a Work Area. Wildcards are supported. When omitted, all Areas in the given Team Project are returned. To supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional. When supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: Boolean -->
      <command:returnValue>
        <dev:type>
          <maml:name>System.Boolean</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/WorkItem/AreasIterations/Test-TfsArea</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Get-TfsArtifact -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Artifact">
    <command:details>
      <command:name>Get-TfsArtifact</command:name>
      <command:verb>Get</command:verb>
      <command:noun>TfsArtifact</command:noun>
      <maml:description>
        <maml:para>Gets information from one or more artifact feeds. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Get-TfsArtifact</maml:name>
        <!-- Parameter: Artifact -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Package">
          <maml:name>Artifact</maml:name>
          <maml:description>
            <maml:para>Specifies the package (artifact) name. Wildcards are supported. When omitted, returns all packages in the specified feed. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>*</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Feed -->
        <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="named">
          <maml:name>Feed</maml:name>
          <maml:description>
            <maml:para>Specifies the feed name. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: IncludeDeleted -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>IncludeDeleted</maml:name>
          <maml:description>
            <maml:para>Includes deletes packages in the result. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: IncludeDelisted -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>IncludeDelisted</maml:name>
          <maml:description>
            <maml:para>Includes delisted packages in the results. Applies only to Nuget packages. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: IncludeDescription -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>IncludeDescription</maml:name>
          <maml:description>
            <maml:para>Includes the package description in the results. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: IncludePrerelease -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>IncludePrerelease</maml:name>
          <maml:description>
            <maml:para>Includes prerelease packages in the results. Applies only to Nuget packages. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: ProtocolType -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>ProtocolType</maml:name>
          <maml:description>
            <maml:para>Returns only packages of the specified protocol type. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Artifact -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Package">
        <maml:name>Artifact</maml:name>
        <maml:description>
          <maml:para>Specifies the package (artifact) name. Wildcards are supported. When omitted, returns all packages in the specified feed. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>*</dev:defaultValue>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Package">
        <maml:name>Package</maml:name>
        <maml:description>
          <maml:para>Specifies the package (artifact) name. Wildcards are supported. When omitted, returns all packages in the specified feed. </maml:para>
          <maml:para>This is an alias of the Artifact parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>*</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Feed -->
      <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="named">
        <maml:name>Feed</maml:name>
        <maml:description>
          <maml:para>Specifies the feed name. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: IncludeDeleted -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>IncludeDeleted</maml:name>
        <maml:description>
          <maml:para>Includes deletes packages in the result. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: IncludeDescription -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>IncludeDescription</maml:name>
        <maml:description>
          <maml:para>Includes the package description in the results. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: IncludePrerelease -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>IncludePrerelease</maml:name>
        <maml:description>
          <maml:para>Includes prerelease packages in the results. Applies only to Nuget packages. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: IncludeDelisted -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>IncludeDelisted</maml:name>
        <maml:description>
          <maml:para>Includes delisted packages in the results. Applies only to Nuget packages. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: ProtocolType -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>ProtocolType</maml:name>
        <maml:description>
          <maml:para>Returns only packages of the specified protocol type. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Organization</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          <maml:para>This is an alias of the Collection parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Server -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Server</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the feed name. </maml:para>
        </maml:description>
      </command:inputType>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: Package -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.VisualStudio.Services.Feed.WebApi.Package</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/Artifact/Get-TfsArtifact</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Get-TfsArtifactFeed -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Artifact">
    <command:details>
      <command:name>Get-TfsArtifactFeed</command:name>
      <command:verb>Get</command:verb>
      <command:noun>TfsArtifactFeed</command:noun>
      <maml:description>
        <maml:para>Gets information from one or more artifact feeds. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Get-TfsArtifactFeed</maml:name>
        <!-- Parameter: Feed -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0">
          <maml:name>Feed</maml:name>
          <maml:description>
            <maml:para>Specifies the feed name. Wildcards are supported. When omitted, returns all feeds. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>*</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Role -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Role</maml:name>
          <maml:description>
            <maml:para>Filters by role. Returns only those feeds where the currently logged on user has one of the specified roles: either Administrator, Contributor, or Reader level permissions. When omitted, filters by Administrator role. </maml:para>
            <maml:para>Possible values: Custom, None, Reader, Contributor, Administrator, Collaborator</maml:para>
          </maml:description>
          <command:parameterValue required="true">FeedRole</command:parameterValue>
          <dev:type>
            <maml:name>Microsoft.VisualStudio.Services.Feed.WebApi.FeedRole</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>Reader</dev:defaultValue>
          <command:parameterValueGroup>
            <command:parameterValue required="false" variableLength="false">Custom</command:parameterValue>
            <command:parameterValue required="false" variableLength="false">None</command:parameterValue>
            <command:parameterValue required="false" variableLength="false">Reader</command:parameterValue>
            <command:parameterValue required="false" variableLength="false">Contributor</command:parameterValue>
            <command:parameterValue required="false" variableLength="false">Administrator</command:parameterValue>
            <command:parameterValue required="false" variableLength="false">Collaborator</command:parameterValue>
          </command:parameterValueGroup>
        </command:parameter>
        <!-- Parameter: Scope -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Scope</maml:name>
          <maml:description>
            <maml:para>Returns only feeds from the given scope (collection or project). When omitted, returns all feeds. </maml:para>
            <maml:para>Possible values: Collection, Project, All</maml:para>
          </maml:description>
          <command:parameterValue required="true">ProjectOrCollectionScope</command:parameterValue>
          <dev:type>
            <maml:name>TfsCmdlets.ProjectOrCollectionScope</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>All</dev:defaultValue>
          <command:parameterValueGroup>
            <command:parameterValue required="false" variableLength="false">Collection</command:parameterValue>
            <command:parameterValue required="false" variableLength="false">Project</command:parameterValue>
            <command:parameterValue required="false" variableLength="false">All</command:parameterValue>
          </command:parameterValueGroup>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Feed -->
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0">
        <maml:name>Feed</maml:name>
        <maml:description>
          <maml:para>Specifies the feed name. Wildcards are supported. When omitted, returns all feeds. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>*</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Scope -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Scope</maml:name>
        <maml:description>
          <maml:para>Returns only feeds from the given scope (collection or project). When omitted, returns all feeds. </maml:para>
          <maml:para>Possible values: Collection, Project, All</maml:para>
        </maml:description>
        <command:parameterValue required="true">ProjectOrCollectionScope</command:parameterValue>
        <dev:type>
          <maml:name>TfsCmdlets.ProjectOrCollectionScope</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>All</dev:defaultValue>
        <command:parameterValueGroup>
          <command:parameterValue required="false" variableLength="false">Collection</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">Project</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">All</command:parameterValue>
        </command:parameterValueGroup>
      </command:parameter>
      <!-- Parameter: Role -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Role</maml:name>
        <maml:description>
          <maml:para>Filters by role. Returns only those feeds where the currently logged on user has one of the specified roles: either Administrator, Contributor, or Reader level permissions. When omitted, filters by Administrator role. </maml:para>
          <maml:para>Possible values: Custom, None, Reader, Contributor, Administrator, Collaborator</maml:para>
        </maml:description>
        <command:parameterValue required="true">FeedRole</command:parameterValue>
        <dev:type>
          <maml:name>Microsoft.VisualStudio.Services.Feed.WebApi.FeedRole</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>Reader</dev:defaultValue>
        <command:parameterValueGroup>
          <command:parameterValue required="false" variableLength="false">Custom</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">None</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">Reader</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">Contributor</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">Administrator</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">Collaborator</command:parameterValue>
        </command:parameterValueGroup>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Organization</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          <maml:para>This is an alias of the Collection parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Server -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Server</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the feed name. Wildcards are supported. When omitted, returns all feeds. </maml:para>
        </maml:description>
      </command:inputType>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: Feed -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.VisualStudio.Services.Feed.WebApi.Feed</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/Artifact/Get-TfsArtifactFeed</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Get-TfsArtifactFeedView -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Artifact">
    <command:details>
      <command:name>Get-TfsArtifactFeedView</command:name>
      <command:verb>Get</command:verb>
      <command:noun>TfsArtifactFeedView</command:noun>
      <maml:description>
        <maml:para>Gets information from one or more Git repositories in a team project. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Get-TfsArtifactFeedView</maml:name>
        <!-- Parameter: View -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="0">
          <maml:name>View</maml:name>
          <maml:description>
            <maml:para>Specifies the view name. Wildcards are supported. When omitted, returns all views. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>*</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Feed -->
        <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="1">
          <maml:name>Feed</maml:name>
          <maml:description>
            <maml:para>Specifies the parent feed. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Role -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Role</maml:name>
          <maml:description>
            <maml:para>Filters by role. Returns only those feeds where the currently logged on user has one of the specified roles: either Administrator, Contributor, or Reader level permissions. When omitted, filters by Administrator role. </maml:para>
            <maml:para>Possible values: Custom, None, Reader, Contributor, Administrator, Collaborator</maml:para>
          </maml:description>
          <command:parameterValue required="true">FeedRole</command:parameterValue>
          <dev:type>
            <maml:name>Microsoft.VisualStudio.Services.Feed.WebApi.FeedRole</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>Administrator</dev:defaultValue>
          <command:parameterValueGroup>
            <command:parameterValue required="false" variableLength="false">Custom</command:parameterValue>
            <command:parameterValue required="false" variableLength="false">None</command:parameterValue>
            <command:parameterValue required="false" variableLength="false">Reader</command:parameterValue>
            <command:parameterValue required="false" variableLength="false">Contributor</command:parameterValue>
            <command:parameterValue required="false" variableLength="false">Administrator</command:parameterValue>
            <command:parameterValue required="false" variableLength="false">Collaborator</command:parameterValue>
          </command:parameterValueGroup>
        </command:parameter>
        <!-- Parameter: Scope -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Scope</maml:name>
          <maml:description>
            <maml:para>Returns only feeds from the given scope (collection or project). When omitted, returns all feeds. </maml:para>
            <maml:para>Possible values: Collection, Project, All</maml:para>
          </maml:description>
          <command:parameterValue required="true">ProjectOrCollectionScope</command:parameterValue>
          <dev:type>
            <maml:name>TfsCmdlets.ProjectOrCollectionScope</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>All</dev:defaultValue>
          <command:parameterValueGroup>
            <command:parameterValue required="false" variableLength="false">Collection</command:parameterValue>
            <command:parameterValue required="false" variableLength="false">Project</command:parameterValue>
            <command:parameterValue required="false" variableLength="false">All</command:parameterValue>
          </command:parameterValueGroup>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: View -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0">
        <maml:name>View</maml:name>
        <maml:description>
          <maml:para>Specifies the view name. Wildcards are supported. When omitted, returns all views. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>*</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Feed -->
      <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="1">
        <maml:name>Feed</maml:name>
        <maml:description>
          <maml:para>Specifies the parent feed. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Scope -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Scope</maml:name>
        <maml:description>
          <maml:para>Returns only feeds from the given scope (collection or project). When omitted, returns all feeds. </maml:para>
          <maml:para>Possible values: Collection, Project, All</maml:para>
        </maml:description>
        <command:parameterValue required="true">ProjectOrCollectionScope</command:parameterValue>
        <dev:type>
          <maml:name>TfsCmdlets.ProjectOrCollectionScope</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>All</dev:defaultValue>
        <command:parameterValueGroup>
          <command:parameterValue required="false" variableLength="false">Collection</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">Project</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">All</command:parameterValue>
        </command:parameterValueGroup>
      </command:parameter>
      <!-- Parameter: Role -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Role</maml:name>
        <maml:description>
          <maml:para>Filters by role. Returns only those feeds where the currently logged on user has one of the specified roles: either Administrator, Contributor, or Reader level permissions. When omitted, filters by Administrator role. </maml:para>
          <maml:para>Possible values: Custom, None, Reader, Contributor, Administrator, Collaborator</maml:para>
        </maml:description>
        <command:parameterValue required="true">FeedRole</command:parameterValue>
        <dev:type>
          <maml:name>Microsoft.VisualStudio.Services.Feed.WebApi.FeedRole</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>Administrator</dev:defaultValue>
        <command:parameterValueGroup>
          <command:parameterValue required="false" variableLength="false">Custom</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">None</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">Reader</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">Contributor</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">Administrator</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">Collaborator</command:parameterValue>
        </command:parameterValueGroup>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Organization</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          <maml:para>This is an alias of the Collection parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Server -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Server</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the parent feed. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: FeedView -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.VisualStudio.Services.Feed.WebApi.FeedView</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/Artifact/Get-TfsArtifactFeedView</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Get-TfsArtifactVersion -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Artifact">
    <command:details>
      <command:name>Get-TfsArtifactVersion</command:name>
      <command:verb>Get</command:verb>
      <command:noun>TfsArtifactVersion</command:noun>
      <maml:description>
        <maml:para>Gets information from one or more artifact feeds. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Get-TfsArtifactVersion</maml:name>
        <!-- Parameter: Version -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="0">
          <maml:name>Version</maml:name>
          <maml:description>
            <maml:para>Specifies the version to return. Wildcards are supported. When omitted, returns all versions of the specified package. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>*</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Artifact -->
        <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="1" aliases="Package">
          <maml:name>Artifact</maml:name>
          <maml:description>
            <maml:para>Specifies the package (artifact) name. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Feed -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Feed</maml:name>
          <maml:description>
            <maml:para>Specifies the feed name. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: IncludeDeleted -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>IncludeDeleted</maml:name>
          <maml:description>
            <maml:para>Includes deletes packages in the result. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: IncludeDelisted -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>IncludeDelisted</maml:name>
          <maml:description>
            <maml:para>Includes delisted packages in the results. Applies only to Nuget packages. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: ProtocolType -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>ProtocolType</maml:name>
          <maml:description>
            <maml:para>Returns only packages of the specified protocol type. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Version -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0">
        <maml:name>Version</maml:name>
        <maml:description>
          <maml:para>Specifies the version to return. Wildcards are supported. When omitted, returns all versions of the specified package. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>*</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Artifact -->
      <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="1" aliases="Package">
        <maml:name>Artifact</maml:name>
        <maml:description>
          <maml:para>Specifies the package (artifact) name. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="1" aliases="Package">
        <maml:name>Package</maml:name>
        <maml:description>
          <maml:para>Specifies the package (artifact) name. </maml:para>
          <maml:para>This is an alias of the Artifact parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Feed -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Feed</maml:name>
        <maml:description>
          <maml:para>Specifies the feed name. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: IncludeDeleted -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>IncludeDeleted</maml:name>
        <maml:description>
          <maml:para>Includes deletes packages in the result. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: IncludeDelisted -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>IncludeDelisted</maml:name>
        <maml:description>
          <maml:para>Includes delisted packages in the results. Applies only to Nuget packages. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: ProtocolType -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>ProtocolType</maml:name>
        <maml:description>
          <maml:para>Returns only packages of the specified protocol type. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Organization</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          <maml:para>This is an alias of the Collection parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Server -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Server</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the package (artifact) name. </maml:para>
        </maml:description>
      </command:inputType>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: PackageVersion -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.VisualStudio.Services.Feed.WebApi.PackageVersion</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/Artifact/Get-TfsArtifactVersion</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Start-TfsBuild -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/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>Start-TfsBuild</command:name>
      <command:verb>Start</command:verb>
      <command:noun>TfsBuild</command:noun>
      <maml:description>
        <maml:para>Gets one or more build/pipeline definitions in a team project. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Start-TfsBuild</maml:name>
        <!-- Parameter: Definition -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Path,Pipeline">
          <maml:name>Definition</maml:name>
          <maml:description>
            <maml:para>Specifies the pipeline to start. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Definition -->
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Path,Pipeline">
        <maml:name>Definition</maml:name>
        <maml:description>
          <maml:para>Specifies the pipeline to start. </maml:para>
        </maml:description>
        <command:parameterValue required="true">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,Pipeline">
        <maml:name>Path</maml:name>
        <maml:description>
          <maml:para>Specifies the pipeline to start. </maml:para>
          <maml:para>This is an alias of the Definition parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Path,Pipeline">
        <maml:name>Pipeline</maml:name>
        <maml:description>
          <maml:para>Specifies the pipeline to start. </maml:para>
          <maml:para>This is an alias of the Definition parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Organization</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          <maml:para>This is an alias of the Collection parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Server -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Server</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the pipeline to start. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: BuildDefinitionReference -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.TeamFoundation.Build.WebApi.BuildDefinitionReference</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/Pipeline/Build/Start-TfsBuild</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Disable-TfsBuildDefinition -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Pipeline.Build.Definition">
    <command:details>
      <command:name>Disable-TfsBuildDefinition</command:name>
      <command:verb>Disable</command:verb>
      <command:noun>TfsBuildDefinition</command:noun>
      <maml:description>
        <maml:para>Disables a build/pipeline definition. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Disable-TfsBuildDefinition</maml:name>
        <!-- Parameter: Definition -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Path">
          <maml:name>Definition</maml:name>
          <maml:description>
            <maml:para>Specifies the pipeline name/path. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Passthru -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Passthru</maml:name>
          <maml:description>
            <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Definition -->
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Path">
        <maml:name>Definition</maml:name>
        <maml:description>
          <maml:para>Specifies the pipeline name/path. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Path">
        <maml:name>Path</maml:name>
        <maml:description>
          <maml:para>Specifies the pipeline name/path. </maml:para>
          <maml:para>This is an alias of the Definition parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Passthru -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Passthru</maml:name>
        <maml:description>
          <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Organization</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          <maml:para>This is an alias of the Collection parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Server -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Server</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the pipeline name/path. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: BuildDefinitionReference -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.TeamFoundation.Build.WebApi.BuildDefinitionReference</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/Pipeline/Build/Definition/Disable-TfsBuildDefinition</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Enable-TfsBuildDefinition -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Pipeline.Build.Definition">
    <command:details>
      <command:name>Enable-TfsBuildDefinition</command:name>
      <command:verb>Enable</command:verb>
      <command:noun>TfsBuildDefinition</command:noun>
      <maml:description>
        <maml:para>Enables a previously disabled build/pipeline definition. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Enable-TfsBuildDefinition</maml:name>
        <!-- Parameter: Definition -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Path">
          <maml:name>Definition</maml:name>
          <maml:description>
            <maml:para>Specifies the pipeline name/path. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Passthru -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Passthru</maml:name>
          <maml:description>
            <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Definition -->
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Path">
        <maml:name>Definition</maml:name>
        <maml:description>
          <maml:para>Specifies the pipeline name/path. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Path">
        <maml:name>Path</maml:name>
        <maml:description>
          <maml:para>Specifies the pipeline name/path. </maml:para>
          <maml:para>This is an alias of the Definition parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Passthru -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Passthru</maml:name>
        <maml:description>
          <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Organization</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          <maml:para>This is an alias of the Collection parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Server -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Server</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the pipeline name/path. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: BuildDefinitionReference -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.TeamFoundation.Build.WebApi.BuildDefinitionReference</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/Pipeline/Build/Definition/Enable-TfsBuildDefinition</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Get-TfsBuildDefinition -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Pipeline.Build.Definition">
    <command:details>
      <command:name>Get-TfsBuildDefinition</command:name>
      <command:verb>Get</command:verb>
      <command:noun>TfsBuildDefinition</command:noun>
      <maml:description>
        <maml:para>Gets one or more build/pipeline definitions in a team project. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Get-TfsBuildDefinition</maml:name>
        <!-- Parameter: Definition -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Path">
          <maml:name>Definition</maml:name>
          <maml:description>
            <maml:para>Specifies the pipeline path. Wildcards are supported. When omitted, all pipelines definitions in the supplied team project are returned. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>\**</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: QueryOrder -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>QueryOrder</maml:name>
          <maml:description>
            <maml:para>Specifies the query order. When omitted, defaults to None. </maml:para>
            <maml:para>Possible values: None, LastModifiedAscending, LastModifiedDescending, DefinitionNameAscending, DefinitionNameDescending</maml:para>
          </maml:description>
          <command:parameterValue required="true">DefinitionQueryOrder</command:parameterValue>
          <dev:type>
            <maml:name>Microsoft.TeamFoundation.Build.WebApi.DefinitionQueryOrder</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>None</dev:defaultValue>
          <command:parameterValueGroup>
            <command:parameterValue required="false" variableLength="false">None</command:parameterValue>
            <command:parameterValue required="false" variableLength="false">LastModifiedAscending</command:parameterValue>
            <command:parameterValue required="false" variableLength="false">LastModifiedDescending</command:parameterValue>
            <command:parameterValue required="false" variableLength="false">DefinitionNameAscending</command:parameterValue>
            <command:parameterValue required="false" variableLength="false">DefinitionNameDescending</command:parameterValue>
          </command:parameterValueGroup>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Definition -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Path">
        <maml:name>Definition</maml:name>
        <maml:description>
          <maml:para>Specifies the pipeline path. Wildcards are supported. When omitted, all pipelines definitions in the supplied team project are returned. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>\**</dev:defaultValue>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Path">
        <maml:name>Path</maml:name>
        <maml:description>
          <maml:para>Specifies the pipeline path. Wildcards are supported. When omitted, all pipelines definitions in the supplied team project are returned. </maml:para>
          <maml:para>This is an alias of the Definition parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>\**</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: QueryOrder -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>QueryOrder</maml:name>
        <maml:description>
          <maml:para>Specifies the query order. When omitted, defaults to None. </maml:para>
          <maml:para>Possible values: None, LastModifiedAscending, LastModifiedDescending, DefinitionNameAscending, DefinitionNameDescending</maml:para>
        </maml:description>
        <command:parameterValue required="true">DefinitionQueryOrder</command:parameterValue>
        <dev:type>
          <maml:name>Microsoft.TeamFoundation.Build.WebApi.DefinitionQueryOrder</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>None</dev:defaultValue>
        <command:parameterValueGroup>
          <command:parameterValue required="false" variableLength="false">None</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">LastModifiedAscending</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">LastModifiedDescending</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">DefinitionNameAscending</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">DefinitionNameDescending</command:parameterValue>
        </command:parameterValueGroup>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Organization</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          <maml:para>This is an alias of the Collection parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Server -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Server</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: BuildDefinitionReference -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.TeamFoundation.Build.WebApi.BuildDefinitionReference</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/Pipeline/Build/Definition/Get-TfsBuildDefinition</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Resume-TfsBuildDefinition -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Pipeline.Build.Definition">
    <command:details>
      <command:name>Resume-TfsBuildDefinition</command:name>
      <command:verb>Resume</command:verb>
      <command:noun>TfsBuildDefinition</command:noun>
      <maml:description>
        <maml:para>Resumes (unpauses) a previously suspended build/pipeline definition. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Resume-TfsBuildDefinition</maml:name>
        <!-- Parameter: Definition -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Path">
          <maml:name>Definition</maml:name>
          <maml:description>
            <maml:para>Specifies the pipeline name/path. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Definition -->
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Path">
        <maml:name>Definition</maml:name>
        <maml:description>
          <maml:para>Specifies the pipeline name/path. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Path">
        <maml:name>Path</maml:name>
        <maml:description>
          <maml:para>Specifies the pipeline name/path. </maml:para>
          <maml:para>This is an alias of the Definition parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Organization</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          <maml:para>This is an alias of the Collection parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Server -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Server</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the pipeline name/path. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: BuildDefinitionReference -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.TeamFoundation.Build.WebApi.BuildDefinitionReference</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/Pipeline/Build/Definition/Resume-TfsBuildDefinition</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Suspend-TfsBuildDefinition -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Pipeline.Build.Definition">
    <command:details>
      <command:name>Suspend-TfsBuildDefinition</command:name>
      <command:verb>Suspend</command:verb>
      <command:noun>TfsBuildDefinition</command:noun>
      <maml:description>
        <maml:para>Suspends (pauses) a build/pipeline definition. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Suspend-TfsBuildDefinition</maml:name>
        <!-- Parameter: Definition -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Path">
          <maml:name>Definition</maml:name>
          <maml:description>
            <maml:para>Specifies the pipeline name/path. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Definition -->
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Path">
        <maml:name>Definition</maml:name>
        <maml:description>
          <maml:para>Specifies the pipeline name/path. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Path">
        <maml:name>Path</maml:name>
        <maml:description>
          <maml:para>Specifies the pipeline name/path. </maml:para>
          <maml:para>This is an alias of the Definition parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Organization</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          <maml:para>This is an alias of the Collection parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Server -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Server</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the pipeline name/path. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: BuildDefinitionReference -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.TeamFoundation.Build.WebApi.BuildDefinitionReference</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/Pipeline/Build/Definition/Suspend-TfsBuildDefinition</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Get-TfsBuildDefinitionFolder -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Pipeline.Build.Folder">
    <command:details>
      <command:name>Get-TfsBuildDefinitionFolder</command:name>
      <command:verb>Get</command:verb>
      <command:noun>TfsBuildDefinitionFolder</command:noun>
      <maml:description>
        <maml:para>Gets one or more build/pipeline definition folders in a team project. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Get-TfsBuildDefinitionFolder</maml:name>
        <!-- Parameter: Folder -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Path">
          <maml:name>Folder</maml:name>
          <maml:description>
            <maml:para>Specifies the folder path. Wildcards are supported. When omitted, all build/pipeline folders in the supplied team project are returned. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>**</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: QueryOrder -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>QueryOrder</maml:name>
          <maml:description>
            <maml:para>Specifies the query order. When omitted, defaults to None. </maml:para>
            <maml:para>Possible values: None, FolderAscending, FolderDescending</maml:para>
          </maml:description>
          <command:parameterValue required="true">FolderQueryOrder</command:parameterValue>
          <dev:type>
            <maml:name>Microsoft.TeamFoundation.Build.WebApi.FolderQueryOrder</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>None</dev:defaultValue>
          <command:parameterValueGroup>
            <command:parameterValue required="false" variableLength="false">None</command:parameterValue>
            <command:parameterValue required="false" variableLength="false">FolderAscending</command:parameterValue>
            <command:parameterValue required="false" variableLength="false">FolderDescending</command:parameterValue>
          </command:parameterValueGroup>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Folder -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Path">
        <maml:name>Folder</maml:name>
        <maml:description>
          <maml:para>Specifies the folder path. Wildcards are supported. When omitted, all build/pipeline folders in the supplied team project are returned. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>**</dev:defaultValue>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Path">
        <maml:name>Path</maml:name>
        <maml:description>
          <maml:para>Specifies the folder path. Wildcards are supported. When omitted, all build/pipeline folders in the supplied team project are returned. </maml:para>
          <maml:para>This is an alias of the Folder parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>**</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: QueryOrder -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>QueryOrder</maml:name>
        <maml:description>
          <maml:para>Specifies the query order. When omitted, defaults to None. </maml:para>
          <maml:para>Possible values: None, FolderAscending, FolderDescending</maml:para>
        </maml:description>
        <command:parameterValue required="true">FolderQueryOrder</command:parameterValue>
        <dev:type>
          <maml:name>Microsoft.TeamFoundation.Build.WebApi.FolderQueryOrder</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>None</dev:defaultValue>
        <command:parameterValueGroup>
          <command:parameterValue required="false" variableLength="false">None</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">FolderAscending</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">FolderDescending</command:parameterValue>
        </command:parameterValueGroup>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Organization</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          <maml:para>This is an alias of the Collection parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Server -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Server</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: Folder -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.TeamFoundation.Build.WebApi.Folder</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/Pipeline/Build/Folder/Get-TfsBuildDefinitionFolder</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: New-TfsBuildDefinitionFolder -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Pipeline.Build.Folder">
    <command:details>
      <command:name>New-TfsBuildDefinitionFolder</command:name>
      <command:verb>New</command:verb>
      <command:noun>TfsBuildDefinitionFolder</command:noun>
      <maml:description>
        <maml:para>Creates a new build/pipeline definition folder </maml:para>
      </maml:description>
    </command:details>
    <maml:description>
      <maml:para>Folders are created recursively - i.e. when specifying a path like '\foo\bar\baz', if any of the parent folders (foo, foo\bar) does not exist, it is automatically created before creating any child folders. </maml:para>
    </maml:description>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>New-TfsBuildDefinitionFolder</maml:name>
        <!-- Parameter: Folder -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Path">
          <maml:name>Folder</maml:name>
          <maml:description>
            <maml:para>Specifies the path of the new pipeline/build folder, including its name, separated by backslashes (\). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Description -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Description</maml:name>
          <maml:description>
            <maml:para>Specifies the description of the new build/pipeline folder. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Passthru -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Passthru</maml:name>
          <maml:description>
            <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Folder -->
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Path">
        <maml:name>Folder</maml:name>
        <maml:description>
          <maml:para>Specifies the path of the new pipeline/build folder, including its name, separated by backslashes (\). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Path">
        <maml:name>Path</maml:name>
        <maml:description>
          <maml:para>Specifies the path of the new pipeline/build folder, including its name, separated by backslashes (\). </maml:para>
          <maml:para>This is an alias of the Folder parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Description -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Description</maml:name>
        <maml:description>
          <maml:para>Specifies the description of the new build/pipeline folder. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Passthru -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Passthru</maml:name>
        <maml:description>
          <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Organization</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          <maml:para>This is an alias of the Collection parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Server -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Server</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the path of the new pipeline/build folder, including its name, separated by backslashes (\). </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: Folder -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.TeamFoundation.Build.WebApi.Folder</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/Pipeline/Build/Folder/New-TfsBuildDefinitionFolder</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Remove-TfsBuildDefinitionFolder -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Pipeline.Build.Folder">
    <command:details>
      <command:name>Remove-TfsBuildDefinitionFolder</command:name>
      <command:verb>Remove</command:verb>
      <command:noun>TfsBuildDefinitionFolder</command:noun>
      <maml:description>
        <maml:para>Deletes one or more build/pipeline definition folders. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Remove-TfsBuildDefinitionFolder</maml:name>
        <!-- Parameter: Folder -->
        <command:parameter required="true" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Path">
          <maml:name>Folder</maml:name>
          <maml:description>
            <maml:para>Specifies the path of the pipeline/build folder to delete, including its name, separated by backslashes (\). Wildcards are supperted. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Force -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Force</maml:name>
          <maml:description>
            <maml:para>Forces the exclusion of folders containing build/pipelines definitions. When omitted, only empty folders can be deleted. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Recurse -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Recurse</maml:name>
          <maml:description>
            <maml:para>Removes folders recursively. When omitted, folders with subfolders cannot be deleted. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Folder -->
      <command:parameter required="true" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Path">
        <maml:name>Folder</maml:name>
        <maml:description>
          <maml:para>Specifies the path of the pipeline/build folder to delete, including its name, separated by backslashes (\). Wildcards are supperted. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="true" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Path">
        <maml:name>Path</maml:name>
        <maml:description>
          <maml:para>Specifies the path of the pipeline/build folder to delete, including its name, separated by backslashes (\). Wildcards are supperted. </maml:para>
          <maml:para>This is an alias of the Folder parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Recurse -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Recurse</maml:name>
        <maml:description>
          <maml:para>Removes folders recursively. When omitted, folders with subfolders cannot be deleted. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Force -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Force</maml:name>
        <maml:description>
          <maml:para>Forces the exclusion of folders containing build/pipelines definitions. When omitted, only empty folders can be deleted. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Organization</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          <maml:para>This is an alias of the Collection parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Server -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Server</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the path of the pipeline/build folder to delete, including its name, separated by backslashes (\). Wildcards are supperted. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: Folder -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.TeamFoundation.Build.WebApi.Folder</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/Pipeline/Build/Folder/Remove-TfsBuildDefinitionFolder</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Get-TfsConfigurationConnectionString -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Admin">
    <command:details>
      <command:name>Get-TfsConfigurationConnectionString</command:name>
      <command:verb>Get</command:verb>
      <command:noun>TfsConfigurationConnectionString</command:noun>
      <maml:description>
        <maml:para>Gets the configuration server database connection string. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: Use computer name -->
      <command:syntaxItem tfscmdlets:parameterSet="Use computer name">
        <maml:name>Get-TfsConfigurationConnectionString</maml:name>
        <!-- Parameter: ComputerName -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>ComputerName</maml:name>
          <maml:description>
            <maml:para>Specifies the name of a Team Foundation Server application tier from which to retrieve the connection string. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>localhost</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Credential -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Credential</maml:name>
          <maml:description>
            <maml:para>The user credentials to be used to access a remote machine. Those credentials must have the required permission to execute a PowerShell Remote session on that computer. </maml:para>
          </maml:description>
          <command:parameterValue required="true">PSCredential</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.PSCredential</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>System.Management.Automation.PSCredential</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Version -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Version</maml:name>
          <maml:description>
            <maml:para>The TFS version number, represented by the year in its name. For e.g. TFS 2015, use "2015". When omitted, will default to the newest installed version of TFS / Azure DevOps Server </maml:para>
          </maml:description>
          <command:parameterValue required="true">int</command:parameterValue>
          <dev:type>
            <maml:name>System.Int32</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>0</dev:defaultValue>
        </command:parameter>
      </command:syntaxItem>
      <!-- Parameter Set: Use session -->
      <command:syntaxItem tfscmdlets:parameterSet="Use session">
        <maml:name>Get-TfsConfigurationConnectionString</maml:name>
        <!-- Parameter: Session -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
          <maml:name>Session</maml:name>
          <maml:description>
            <maml:para>The machine name of the server where the TFS component is installed. It must be properly configured for PowerShell Remoting in case it's a remote machine. Optionally, a System.Management.Automation.Runspaces.PSSession object pointing to a previously opened PowerShell Remote session can be provided instead. When omitted, defaults to the local machine where the script is being run </maml:para>
          </maml:description>
          <command:parameterValue required="true">PSSession</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.Runspaces.PSSession</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Credential -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Credential</maml:name>
          <maml:description>
            <maml:para>The user credentials to be used to access a remote machine. Those credentials must have the required permission to execute a PowerShell Remote session on that computer. </maml:para>
          </maml:description>
          <command:parameterValue required="true">PSCredential</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.PSCredential</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>System.Management.Automation.PSCredential</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Version -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Version</maml:name>
          <maml:description>
            <maml:para>The TFS version number, represented by the year in its name. For e.g. TFS 2015, use "2015". When omitted, will default to the newest installed version of TFS / Azure DevOps Server </maml:para>
          </maml:description>
          <command:parameterValue required="true">int</command:parameterValue>
          <dev:type>
            <maml:name>System.Int32</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>0</dev:defaultValue>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: ComputerName -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>ComputerName</maml:name>
        <maml:description>
          <maml:para>Specifies the name of a Team Foundation Server application tier from which to retrieve the connection string. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>localhost</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Session -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
        <maml:name>Session</maml:name>
        <maml:description>
          <maml:para>The machine name of the server where the TFS component is installed. It must be properly configured for PowerShell Remoting in case it's a remote machine. Optionally, a System.Management.Automation.Runspaces.PSSession object pointing to a previously opened PowerShell Remote session can be provided instead. When omitted, defaults to the local machine where the script is being run </maml:para>
        </maml:description>
        <command:parameterValue required="true">PSSession</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.Runspaces.PSSession</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Version -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Version</maml:name>
        <maml:description>
          <maml:para>The TFS version number, represented by the year in its name. For e.g. TFS 2015, use "2015". When omitted, will default to the newest installed version of TFS / Azure DevOps Server </maml:para>
        </maml:description>
        <command:parameterValue required="true">int</command:parameterValue>
        <dev:type>
          <maml:name>System.Int32</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>0</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Credential -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Credential</maml:name>
        <maml:description>
          <maml:para>The user credentials to be used to access a remote machine. Those credentials must have the required permission to execute a PowerShell Remote session on that computer. </maml:para>
        </maml:description>
        <command:parameterValue required="true">PSCredential</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.PSCredential</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>System.Management.Automation.PSCredential</dev:defaultValue>
      </command:parameter>
    </command:parameters>
    <command:inputTypes />
    <command:returnValues>
      <!-- OutputType: String -->
      <command:returnValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/Admin/Get-TfsConfigurationConnectionString</maml:uri>
      </maml:navigationLink>
      <maml:navigationLink>
        <maml:linkText>Online version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/admin/get-tfsconfigurationConnectionstring/</maml:uri>
      </maml:navigationLink>
      <maml:navigationLink>
        <maml:linkText>Get-TfsInstallationPath</maml:linkText>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: New-TfsCredential -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Credential">
    <command:details>
      <command:name>New-TfsCredential</command:name>
      <command:verb>New</command:verb>
      <command:noun>TfsCredential</command:noun>
      <maml:description>
        <maml:para>Provides credentials to use when you connect to a Team Foundation Server or Azure DevOps organization. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: Cached credentials -->
      <command:syntaxItem tfscmdlets:parameterSet="Cached credentials">
        <maml:name>New-TfsCredential</maml:name>
        <!-- Parameter: Url -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="0">
          <maml:name>Url</maml:name>
          <maml:description>
            <maml:para>Specifies the URL of the server, collection or organization to connect to. </maml:para>
          </maml:description>
          <command:parameterValue required="true">Uri</command:parameterValue>
          <dev:type>
            <maml:name>System.Uri</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Cached -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
          <maml:name>Cached</maml:name>
          <maml:description>
            <maml:para>Specifies that cached (default) credentials should be used when possible/available. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
      </command:syntaxItem>
      <!-- Parameter Set: User name and password -->
      <command:syntaxItem tfscmdlets:parameterSet="User name and password">
        <maml:name>New-TfsCredential</maml:name>
        <!-- Parameter: Url -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="0">
          <maml:name>Url</maml:name>
          <maml:description>
            <maml:para>Specifies the URL of the server, collection or organization to connect to. </maml:para>
          </maml:description>
          <command:parameterValue required="true">Uri</command:parameterValue>
          <dev:type>
            <maml:name>System.Uri</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Password -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
          <maml:name>Password</maml:name>
          <maml:description>
            <maml:para>Specifies a password for authentication modes (such as Basic) that support username/password-based credentials. Must be used in conjunction with the -UserName argument </maml:para>
          </maml:description>
          <command:parameterValue required="true">SecureString</command:parameterValue>
          <dev:type>
            <maml:name>System.Security.SecureString</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: UserName -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
          <maml:name>UserName</maml:name>
          <maml:description>
            <maml:para>Specifies a user name for authentication modes (such as Basic) that support username/password-based credentials. Must be used in conjunction with the -Password argument </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
      <!-- Parameter Set: Credential object -->
      <command:syntaxItem tfscmdlets:parameterSet="Credential object">
        <maml:name>New-TfsCredential</maml:name>
        <!-- Parameter: Url -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="0">
          <maml:name>Url</maml:name>
          <maml:description>
            <maml:para>Specifies the URL of the server, collection or organization to connect to. </maml:para>
          </maml:description>
          <command:parameterValue required="true">Uri</command:parameterValue>
          <dev:type>
            <maml:name>System.Uri</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Credential -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
          <maml:name>Credential</maml:name>
          <maml:description>
            <maml:para>Specifies a user account that has permission to perform this action. To provide a user name and password, a Personal Access Token, and/or to open a input dialog to enter your credentials, call Get-TfsCredential with the appropriate arguments and pass its return to this argument. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
      <!-- Parameter Set: Personal Access Token -->
      <command:syntaxItem tfscmdlets:parameterSet="Personal Access Token">
        <maml:name>New-TfsCredential</maml:name>
        <!-- Parameter: Url -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="0">
          <maml:name>Url</maml:name>
          <maml:description>
            <maml:para>Specifies the URL of the server, collection or organization to connect to. </maml:para>
          </maml:description>
          <command:parameterValue required="true">Uri</command:parameterValue>
          <dev:type>
            <maml:name>System.Uri</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: PersonalAccessToken -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="named" aliases="Pat">
          <maml:name>PersonalAccessToken</maml:name>
          <maml:description>
            <maml:para>Specifies a personal access token, used as an alternate credential, to authenticate to Azure DevOps </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
      <!-- Parameter Set: Prompt for credential -->
      <command:syntaxItem tfscmdlets:parameterSet="Prompt for credential">
        <maml:name>New-TfsCredential</maml:name>
        <!-- Parameter: Url -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="0">
          <maml:name>Url</maml:name>
          <maml:description>
            <maml:para>Specifies the URL of the server, collection or organization to connect to. </maml:para>
          </maml:description>
          <command:parameterValue required="true">Uri</command:parameterValue>
          <dev:type>
            <maml:name>System.Uri</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Interactive -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Interactive</maml:name>
          <maml:description>
            <maml:para>Prompts for user credentials. Can be used for any Team Foundation Server or Azure DevOps account - the proper login dialog is automatically selected. Should only be used in an interactive PowerShell session (i.e., a PowerShell terminal window), never in an unattended script (such as those executed during an automated build). Currently it is only supported in Windows PowerShell. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Url -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="0">
        <maml:name>Url</maml:name>
        <maml:description>
          <maml:para>Specifies the URL of the server, collection or organization to connect to. </maml:para>
        </maml:description>
        <command:parameterValue required="true">Uri</command:parameterValue>
        <dev:type>
          <maml:name>System.Uri</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Cached -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
        <maml:name>Cached</maml:name>
        <maml:description>
          <maml:para>Specifies that cached (default) credentials should be used when possible/available. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: UserName -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
        <maml:name>UserName</maml:name>
        <maml:description>
          <maml:para>Specifies a user name for authentication modes (such as Basic) that support username/password-based credentials. Must be used in conjunction with the -Password argument </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Password -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
        <maml:name>Password</maml:name>
        <maml:description>
          <maml:para>Specifies a password for authentication modes (such as Basic) that support username/password-based credentials. Must be used in conjunction with the -UserName argument </maml:para>
        </maml:description>
        <command:parameterValue required="true">SecureString</command:parameterValue>
        <dev:type>
          <maml:name>System.Security.SecureString</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Credential -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
        <maml:name>Credential</maml:name>
        <maml:description>
          <maml:para>Specifies a user account that has permission to perform this action. To provide a user name and password, a Personal Access Token, and/or to open a input dialog to enter your credentials, call Get-TfsCredential with the appropriate arguments and pass its return to this argument. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: PersonalAccessToken -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="named" aliases="Pat">
        <maml:name>PersonalAccessToken</maml:name>
        <maml:description>
          <maml:para>Specifies a personal access token, used as an alternate credential, to authenticate to Azure DevOps </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="true" globbing="false" pipelineInput="false" position="named" aliases="Pat">
        <maml:name>Pat</maml:name>
        <maml:description>
          <maml:para>Specifies a personal access token, used as an alternate credential, to authenticate to Azure DevOps </maml:para>
          <maml:para>This is an alias of the PersonalAccessToken parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Interactive -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Interactive</maml:name>
        <maml:description>
          <maml:para>Prompts for user credentials. Can be used for any Team Foundation Server or Azure DevOps account - the proper login dialog is automatically selected. Should only be used in an interactive PowerShell session (i.e., a PowerShell terminal window), never in an unattended script (such as those executed during an automated build). Currently it is only supported in Windows PowerShell. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
    </command:parameters>
    <command:inputTypes />
    <command:returnValues>
      <!-- OutputType: VssCredentials -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.VisualStudio.Services.Common.VssCredentials</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/Credential/New-TfsCredential</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Disable-TfsExtension -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="ExtensionManagement">
    <command:details>
      <command:name>Disable-TfsExtension</command:name>
      <command:verb>Disable</command:verb>
      <command:noun>TfsExtension</command:noun>
      <maml:description>
        <maml:para>Disables an extension installed in the specified collection/organization. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Disable-TfsExtension</maml:name>
        <!-- Parameter: Extension -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0">
          <maml:name>Extension</maml:name>
          <maml:description>
            <maml:para>Specifies the ID or the name of the extensions. Wilcards are supported. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Publisher -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="1">
          <maml:name>Publisher</maml:name>
          <maml:description>
            <maml:para>Specifies the ID or the name of the publisher. Wilcards are supported. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Passthru -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Passthru</maml:name>
          <maml:description>
            <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Extension -->
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0">
        <maml:name>Extension</maml:name>
        <maml:description>
          <maml:para>Specifies the ID or the name of the extensions. Wilcards are supported. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Publisher -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="1">
        <maml:name>Publisher</maml:name>
        <maml:description>
          <maml:para>Specifies the ID or the name of the publisher. Wilcards are supported. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Passthru -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Passthru</maml:name>
        <maml:description>
          <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Organization</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          <maml:para>This is an alias of the Collection parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Server -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Server</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the ID or the name of the extensions. Wilcards are supported. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: InstalledExtension -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.VisualStudio.Services.ExtensionManagement.WebApi.InstalledExtension</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/ExtensionManagement/Disable-TfsExtension</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Enable-TfsExtension -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="ExtensionManagement">
    <command:details>
      <command:name>Enable-TfsExtension</command:name>
      <command:verb>Enable</command:verb>
      <command:noun>TfsExtension</command:noun>
      <maml:description>
        <maml:para>Enables a previously disabled extension installed in the specified collection/organization. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Enable-TfsExtension</maml:name>
        <!-- Parameter: Extension -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="0">
          <maml:name>Extension</maml:name>
          <maml:description>
            <maml:para>Specifies the ID or the name of the extensions. Wilcards are supported. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Publisher -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="1">
          <maml:name>Publisher</maml:name>
          <maml:description>
            <maml:para>Specifies the ID or the name of the publisher. Wilcards are supported. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Passthru -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Passthru</maml:name>
          <maml:description>
            <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Extension -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0">
        <maml:name>Extension</maml:name>
        <maml:description>
          <maml:para>Specifies the ID or the name of the extensions. Wilcards are supported. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Publisher -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="1">
        <maml:name>Publisher</maml:name>
        <maml:description>
          <maml:para>Specifies the ID or the name of the publisher. Wilcards are supported. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Passthru -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Passthru</maml:name>
        <maml:description>
          <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Organization</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          <maml:para>This is an alias of the Collection parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Server -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Server</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes />
    <command:returnValues>
      <!-- OutputType: InstalledExtension -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.VisualStudio.Services.ExtensionManagement.WebApi.InstalledExtension</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/ExtensionManagement/Enable-TfsExtension</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Get-TfsExtension -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="ExtensionManagement">
    <command:details>
      <command:name>Get-TfsExtension</command:name>
      <command:verb>Get</command:verb>
      <command:noun>TfsExtension</command:noun>
      <maml:description>
        <maml:para>Gets one or more installed extensions in the specified collection. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Get-TfsExtension</maml:name>
        <!-- Parameter: Extension -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="0">
          <maml:name>Extension</maml:name>
          <maml:description>
            <maml:para>Specifies the ID or the name of the extensions. Wilcards are supported. When omitted, returns all extensions installed in the specified organization/collection. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>*</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Publisher -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="1">
          <maml:name>Publisher</maml:name>
          <maml:description>
            <maml:para>Specifies the ID or the name of the publisher. Wilcards are supported. When omitted, returns all extensions installed in the specified organization/collection. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>*</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named" aliases="Organization">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: IncludeDisabledExtensions -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>IncludeDisabledExtensions</maml:name>
          <maml:description>
            <maml:para>Includes disabled extensions in the result. When omitted, disabled extensions are not included in the result. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: IncludeErrors -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>IncludeErrors</maml:name>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: IncludeInstallationIssues -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>IncludeInstallationIssues</maml:name>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Extension -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0">
        <maml:name>Extension</maml:name>
        <maml:description>
          <maml:para>Specifies the ID or the name of the extensions. Wilcards are supported. When omitted, returns all extensions installed in the specified organization/collection. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>*</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Publisher -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="1">
        <maml:name>Publisher</maml:name>
        <maml:description>
          <maml:para>Specifies the ID or the name of the publisher. Wilcards are supported. When omitted, returns all extensions installed in the specified organization/collection. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>*</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: IncludeDisabledExtensions -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>IncludeDisabledExtensions</maml:name>
        <maml:description>
          <maml:para>Includes disabled extensions in the result. When omitted, disabled extensions are not included in the result. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: IncludeErrors -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>IncludeErrors</maml:name>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: IncludeInstallationIssues -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>IncludeInstallationIssues</maml:name>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named" aliases="Organization">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named" aliases="Organization">
        <maml:name>Organization</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          <maml:para>This is an alias of the Collection parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Server -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Server</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: InstalledExtension -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.VisualStudio.Services.ExtensionManagement.WebApi.InstalledExtension</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/ExtensionManagement/Get-TfsExtension</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Install-TfsExtension -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="ExtensionManagement">
    <command:details>
      <command:name>Install-TfsExtension</command:name>
      <command:verb>Install</command:verb>
      <command:noun>TfsExtension</command:noun>
      <maml:description>
        <maml:para>Installs an extension in the specified organization/collection. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Install-TfsExtension</maml:name>
        <!-- Parameter: Extension -->
        <command:parameter required="true" globbing="false" pipelineInput="true (ByPropertyName)" position="0" aliases="ExtensionId">
          <maml:name>Extension</maml:name>
          <maml:description>
            <maml:para>Specifies the ID of the extension to install. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Publisher -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByPropertyName)" position="1" aliases="PublisherId">
          <maml:name>Publisher</maml:name>
          <maml:description>
            <maml:para>Specifies the ID of the publisher of the extension. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Version -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named">
          <maml:name>Version</maml:name>
          <maml:description>
            <maml:para>Specifies the version of the extension to install. When omitted, installs the latest version. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Extension -->
      <command:parameter required="true" globbing="false" pipelineInput="true (ByPropertyName)" position="0" aliases="ExtensionId">
        <maml:name>Extension</maml:name>
        <maml:description>
          <maml:para>Specifies the ID of the extension to install. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="true" globbing="false" pipelineInput="true (ByPropertyName)" position="0" aliases="ExtensionId">
        <maml:name>ExtensionId</maml:name>
        <maml:description>
          <maml:para>Specifies the ID of the extension to install. </maml:para>
          <maml:para>This is an alias of the Extension parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Publisher -->
      <command:parameter required="false" globbing="false" pipelineInput="true (ByPropertyName)" position="1" aliases="PublisherId">
        <maml:name>Publisher</maml:name>
        <maml:description>
          <maml:para>Specifies the ID of the publisher of the extension. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="true (ByPropertyName)" position="1" aliases="PublisherId">
        <maml:name>PublisherId</maml:name>
        <maml:description>
          <maml:para>Specifies the ID of the publisher of the extension. </maml:para>
          <maml:para>This is an alias of the Publisher parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Version -->
      <command:parameter required="false" globbing="false" pipelineInput="true (ByPropertyName)" position="named">
        <maml:name>Version</maml:name>
        <maml:description>
          <maml:para>Specifies the version of the extension to install. When omitted, installs the latest version. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Organization</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          <maml:para>This is an alias of the Collection parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Server -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Server</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the ID of the extension to install. </maml:para>
        </maml:description>
      </command:inputType>
      <command:inputType>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the ID of the publisher of the extension. </maml:para>
        </maml:description>
      </command:inputType>
      <command:inputType>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the version of the extension to install. When omitted, installs the latest version. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: InstalledExtension -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.VisualStudio.Services.ExtensionManagement.WebApi.InstalledExtension</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/ExtensionManagement/Install-TfsExtension</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Uninstall-TfsExtension -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="ExtensionManagement">
    <command:details>
      <command:name>Uninstall-TfsExtension</command:name>
      <command:verb>Uninstall</command:verb>
      <command:noun>TfsExtension</command:noun>
      <maml:description>
        <maml:para>Uninstalls one of more extensions from the specified organization/collection. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Uninstall-TfsExtension</maml:name>
        <!-- Parameter: Extension -->
        <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0">
          <maml:name>Extension</maml:name>
          <maml:description>
            <maml:para>Specifies the ID of the extension to uninstall. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Publisher -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="1">
          <maml:name>Publisher</maml:name>
          <maml:description>
            <maml:para>Specifies the ID of the publisher of the extension. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Extension -->
      <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0">
        <maml:name>Extension</maml:name>
        <maml:description>
          <maml:para>Specifies the ID of the extension to uninstall. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Publisher -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="1">
        <maml:name>Publisher</maml:name>
        <maml:description>
          <maml:para>Specifies the ID of the publisher of the extension. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Organization</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          <maml:para>This is an alias of the Collection parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Server -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Server</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the ID of the extension to uninstall. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: InstalledExtension -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.VisualStudio.Services.ExtensionManagement.WebApi.InstalledExtension</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/ExtensionManagement/Uninstall-TfsExtension</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Get-TfsGitBranch -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Git.Branch">
    <command:details>
      <command:name>Get-TfsGitBranch</command:name>
      <command:verb>Get</command:verb>
      <command:noun>TfsGitBranch</command:noun>
      <maml:description>
        <maml:para>Gets information from one or more branches in a remote Git repository. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: Get by name -->
      <command:syntaxItem tfscmdlets:parameterSet="Get by name">
        <maml:name>Get-TfsGitBranch</maml:name>
        <!-- Parameter: Branch -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="RefName">
          <maml:name>Branch</maml:name>
          <maml:description>
            <maml:para>Specifies the name of a branch in the supplied Git repository. Wildcards are supported. When omitted, all branches are returned. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>*</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Repository -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
          <maml:name>Repository</maml:name>
          <maml:description>
            <maml:para>Specifies the target Git repository. Valid values are the name of the repository, its ID (a GUID), or a Microsoft.TeamFoundation.SourceControl.WebApi.GitRepository object obtained by e.g. a call to Get-TfsGitRepository. When omitted, defaults to the team project name (i.e. the default repository). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
      <!-- Parameter Set: Get default -->
      <command:syntaxItem tfscmdlets:parameterSet="Get default">
        <maml:name>Get-TfsGitBranch</maml:name>
        <!-- Parameter: Default -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
          <maml:name>Default</maml:name>
          <maml:description>
            <maml:para>Returns the default branch in the given repository. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Repository -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
          <maml:name>Repository</maml:name>
          <maml:description>
            <maml:para>Specifies the target Git repository. Valid values are the name of the repository, its ID (a GUID), or a Microsoft.TeamFoundation.SourceControl.WebApi.GitRepository object obtained by e.g. a call to Get-TfsGitRepository. When omitted, defaults to the team project name (i.e. the default repository). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Branch -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="RefName">
        <maml:name>Branch</maml:name>
        <maml:description>
          <maml:para>Specifies the name of a branch in the supplied Git repository. Wildcards are supported. When omitted, all branches are returned. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>*</dev:defaultValue>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="RefName">
        <maml:name>RefName</maml:name>
        <maml:description>
          <maml:para>Specifies the name of a branch in the supplied Git repository. Wildcards are supported. When omitted, all branches are returned. </maml:para>
          <maml:para>This is an alias of the Branch parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>*</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Default -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
        <maml:name>Default</maml:name>
        <maml:description>
          <maml:para>Returns the default branch in the given repository. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Repository -->
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
        <maml:name>Repository</maml:name>
        <maml:description>
          <maml:para>Specifies the target Git repository. Valid values are the name of the repository, its ID (a GUID), or a Microsoft.TeamFoundation.SourceControl.WebApi.GitRepository object obtained by e.g. a call to Get-TfsGitRepository. When omitted, defaults to the team project name (i.e. the default repository). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Organization</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          <maml:para>This is an alias of the Collection parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Server -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Server</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the target Git repository. Valid values are the name of the repository, its ID (a GUID), or a Microsoft.TeamFoundation.SourceControl.WebApi.GitRepository object obtained by e.g. a call to Get-TfsGitRepository. When omitted, defaults to the team project name (i.e. the default repository). </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: GitBranchStats -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.TeamFoundation.SourceControl.WebApi.GitBranchStats</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/Git/Branch/Get-TfsGitBranch</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Remove-TfsGitBranch -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Git.Branch">
    <command:details>
      <command:name>Remove-TfsGitBranch</command:name>
      <command:verb>Remove</command:verb>
      <command:noun>TfsGitBranch</command:noun>
      <maml:description>
        <maml:para>Removes from one or more branches from a remote Git repository. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Remove-TfsGitBranch</maml:name>
        <!-- Parameter: Branch -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="RefName">
          <maml:name>Branch</maml:name>
          <maml:description>
            <maml:para>Specifies the name of a branch in the supplied Git repository. Wildcards are supported. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Repository -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Repository</maml:name>
          <maml:description>
            <maml:para>Specifies the target Git repository. Valid values are the name of the repository, its ID (a GUID), or a Microsoft.TeamFoundation.SourceControl.WebApi.GitRepository object obtained by e.g. a call to Get-TfsGitRepository. When omitted, defaults to the team project name (i.e. the default repository). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Branch -->
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="RefName">
        <maml:name>Branch</maml:name>
        <maml:description>
          <maml:para>Specifies the name of a branch in the supplied Git repository. Wildcards are supported. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="RefName">
        <maml:name>RefName</maml:name>
        <maml:description>
          <maml:para>Specifies the name of a branch in the supplied Git repository. Wildcards are supported. </maml:para>
          <maml:para>This is an alias of the Branch parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Repository -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Repository</maml:name>
        <maml:description>
          <maml:para>Specifies the target Git repository. Valid values are the name of the repository, its ID (a GUID), or a Microsoft.TeamFoundation.SourceControl.WebApi.GitRepository object obtained by e.g. a call to Get-TfsGitRepository. When omitted, defaults to the team project name (i.e. the default repository). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Organization</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          <maml:para>This is an alias of the Collection parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Server -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Server</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the name of a branch in the supplied Git repository. Wildcards are supported. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: GitBranchStats -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.TeamFoundation.SourceControl.WebApi.GitBranchStats</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/Git/Branch/Remove-TfsGitBranch</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Get-TfsGitBranchPolicy -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Git.Policy">
    <command:details>
      <command:name>Get-TfsGitBranchPolicy</command:name>
      <command:verb>Get</command:verb>
      <command:noun>TfsGitBranchPolicy</command:noun>
      <maml:description>
        <maml:para>Gets the Git branch policy configuration of the given Git branches. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Get-TfsGitBranchPolicy</maml:name>
        <!-- Parameter: PolicyType -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="0">
          <maml:name>PolicyType</maml:name>
          <maml:description>
            <maml:para>Specifies the policy type of the branch policy to return. Wildcards are supported. When omitted, all branch policies defined for the given branch are returned. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>*</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Branch -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named" aliases="RefName">
          <maml:name>Branch</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the branch to query for branch policies. When omitted, the default branch in the given repository is queried. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Repository -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Repository</maml:name>
          <maml:description>
            <maml:para>Specifies the target Git repository. Valid values are the name of the repository, its ID (a GUID), or a Microsoft.TeamFoundation.SourceControl.WebApi.GitRepository object obtained by e.g. a call to Get-TfsGitRepository. When omitted, defaults to the team project name (i.e. the default repository). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: PolicyType -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0">
        <maml:name>PolicyType</maml:name>
        <maml:description>
          <maml:para>Specifies the policy type of the branch policy to return. Wildcards are supported. When omitted, all branch policies defined for the given branch are returned. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>*</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Branch -->
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named" aliases="RefName">
        <maml:name>Branch</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the branch to query for branch policies. When omitted, the default branch in the given repository is queried. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named" aliases="RefName">
        <maml:name>RefName</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the branch to query for branch policies. When omitted, the default branch in the given repository is queried. </maml:para>
          <maml:para>This is an alias of the Branch parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Repository -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Repository</maml:name>
        <maml:description>
          <maml:para>Specifies the target Git repository. Valid values are the name of the repository, its ID (a GUID), or a Microsoft.TeamFoundation.SourceControl.WebApi.GitRepository object obtained by e.g. a call to Get-TfsGitRepository. When omitted, defaults to the team project name (i.e. the default repository). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Organization</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          <maml:para>This is an alias of the Collection parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Server -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Server</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the name of the branch to query for branch policies. When omitted, the default branch in the given repository is queried. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: PolicyConfiguration -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.TeamFoundation.Policy.WebApi.PolicyConfiguration</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/Git/Policy/Get-TfsGitBranchPolicy</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Get-TfsGitCommit -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Git.Commit">
    <command:details>
      <command:name>Get-TfsGitCommit</command:name>
      <command:verb>Get</command:verb>
      <command:noun>TfsGitCommit</command:noun>
      <maml:description>
        <maml:para>Gets information from one or more Git commits in a remote repository. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: Get by commit SHA -->
      <command:syntaxItem tfscmdlets:parameterSet="Get by commit SHA">
        <maml:name>Get-TfsGitCommit</maml:name>
        <!-- Parameter: Commit -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="0">
          <maml:name>Commit</maml:name>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: ExcludeDeletes -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>ExcludeDeletes</maml:name>
          <maml:description />
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: IncludeLinks -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>IncludeLinks</maml:name>
          <maml:description />
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: IncludePushData -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>IncludePushData</maml:name>
          <maml:description />
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: IncludeUserImageUrl -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>IncludeUserImageUrl</maml:name>
          <maml:description />
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Repository -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
          <maml:name>Repository</maml:name>
          <maml:description>
            <maml:para>Specifies the target Git repository. Valid values are the name of the repository, its ID (a GUID), or a Microsoft.TeamFoundation.SourceControl.WebApi.GitRepository object obtained by e.g. a call to Get-TfsGitRepository. When omitted, defaults to the team project name (i.e. the default repository). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: ShowOldestCommitsFirst -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>ShowOldestCommitsFirst</maml:name>
          <maml:description />
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Skip -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Skip</maml:name>
          <maml:description />
          <command:parameterValue required="true">int</command:parameterValue>
          <dev:type>
            <maml:name>System.Int32</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>0</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Top -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Top</maml:name>
          <maml:description />
          <command:parameterValue required="true">int</command:parameterValue>
          <dev:type>
            <maml:name>System.Int32</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>0</dev:defaultValue>
        </command:parameter>
      </command:syntaxItem>
      <!-- Parameter Set: Get by tag -->
      <command:syntaxItem tfscmdlets:parameterSet="Get by tag">
        <maml:name>Get-TfsGitCommit</maml:name>
        <!-- Parameter: Tag -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
          <maml:name>Tag</maml:name>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Author -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Author</maml:name>
          <maml:description />
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Committer -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Committer</maml:name>
          <maml:description />
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: CompareVersion -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>CompareVersion</maml:name>
          <maml:description />
          <command:parameterValue required="true">GitVersionDescriptor</command:parameterValue>
          <dev:type>
            <maml:name>Microsoft.TeamFoundation.SourceControl.WebApi.GitVersionDescriptor</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: ExcludeDeletes -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>ExcludeDeletes</maml:name>
          <maml:description />
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: FromCommit -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>FromCommit</maml:name>
          <maml:description />
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: FromDate -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>FromDate</maml:name>
          <maml:description />
          <command:parameterValue required="true">DateTime</command:parameterValue>
          <dev:type>
            <maml:name>System.DateTime</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>1/1/0001 12:00:00 AM</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: IncludeLinks -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>IncludeLinks</maml:name>
          <maml:description />
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: IncludePushData -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>IncludePushData</maml:name>
          <maml:description />
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: IncludeUserImageUrl -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>IncludeUserImageUrl</maml:name>
          <maml:description />
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: ItemPath -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>ItemPath</maml:name>
          <maml:description />
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Repository -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
          <maml:name>Repository</maml:name>
          <maml:description>
            <maml:para>Specifies the target Git repository. Valid values are the name of the repository, its ID (a GUID), or a Microsoft.TeamFoundation.SourceControl.WebApi.GitRepository object obtained by e.g. a call to Get-TfsGitRepository. When omitted, defaults to the team project name (i.e. the default repository). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: ShowOldestCommitsFirst -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>ShowOldestCommitsFirst</maml:name>
          <maml:description />
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Skip -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Skip</maml:name>
          <maml:description />
          <command:parameterValue required="true">int</command:parameterValue>
          <dev:type>
            <maml:name>System.Int32</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>0</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: ToCommit -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>ToCommit</maml:name>
          <maml:description />
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: ToDate -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>ToDate</maml:name>
          <maml:description />
          <command:parameterValue required="true">DateTime</command:parameterValue>
          <dev:type>
            <maml:name>System.DateTime</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>1/1/0001 12:00:00 AM</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Top -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Top</maml:name>
          <maml:description />
          <command:parameterValue required="true">int</command:parameterValue>
          <dev:type>
            <maml:name>System.Int32</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>0</dev:defaultValue>
        </command:parameter>
      </command:syntaxItem>
      <!-- Parameter Set: Get by branch -->
      <command:syntaxItem tfscmdlets:parameterSet="Get by branch">
        <maml:name>Get-TfsGitCommit</maml:name>
        <!-- Parameter: Branch -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
          <maml:name>Branch</maml:name>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Author -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Author</maml:name>
          <maml:description />
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Committer -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Committer</maml:name>
          <maml:description />
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: CompareVersion -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>CompareVersion</maml:name>
          <maml:description />
          <command:parameterValue required="true">GitVersionDescriptor</command:parameterValue>
          <dev:type>
            <maml:name>Microsoft.TeamFoundation.SourceControl.WebApi.GitVersionDescriptor</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: ExcludeDeletes -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>ExcludeDeletes</maml:name>
          <maml:description />
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: FromCommit -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>FromCommit</maml:name>
          <maml:description />
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: FromDate -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>FromDate</maml:name>
          <maml:description />
          <command:parameterValue required="true">DateTime</command:parameterValue>
          <dev:type>
            <maml:name>System.DateTime</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>1/1/0001 12:00:00 AM</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: IncludeLinks -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>IncludeLinks</maml:name>
          <maml:description />
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: IncludePushData -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>IncludePushData</maml:name>
          <maml:description />
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: IncludeUserImageUrl -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>IncludeUserImageUrl</maml:name>
          <maml:description />
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: ItemPath -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>ItemPath</maml:name>
          <maml:description />
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Repository -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
          <maml:name>Repository</maml:name>
          <maml:description>
            <maml:para>Specifies the target Git repository. Valid values are the name of the repository, its ID (a GUID), or a Microsoft.TeamFoundation.SourceControl.WebApi.GitRepository object obtained by e.g. a call to Get-TfsGitRepository. When omitted, defaults to the team project name (i.e. the default repository). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: ShowOldestCommitsFirst -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>ShowOldestCommitsFirst</maml:name>
          <maml:description />
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Skip -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Skip</maml:name>
          <maml:description />
          <command:parameterValue required="true">int</command:parameterValue>
          <dev:type>
            <maml:name>System.Int32</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>0</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: ToCommit -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>ToCommit</maml:name>
          <maml:description />
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: ToDate -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>ToDate</maml:name>
          <maml:description />
          <command:parameterValue required="true">DateTime</command:parameterValue>
          <dev:type>
            <maml:name>System.DateTime</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>1/1/0001 12:00:00 AM</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Top -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Top</maml:name>
          <maml:description />
          <command:parameterValue required="true">int</command:parameterValue>
          <dev:type>
            <maml:name>System.Int32</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>0</dev:defaultValue>
        </command:parameter>
      </command:syntaxItem>
      <!-- Parameter Set: Search commits -->
      <command:syntaxItem tfscmdlets:parameterSet="Search commits">
        <maml:name>Get-TfsGitCommit</maml:name>
        <!-- Parameter: Author -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Author</maml:name>
          <maml:description />
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Committer -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Committer</maml:name>
          <maml:description />
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: CompareVersion -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>CompareVersion</maml:name>
          <maml:description />
          <command:parameterValue required="true">GitVersionDescriptor</command:parameterValue>
          <dev:type>
            <maml:name>Microsoft.TeamFoundation.SourceControl.WebApi.GitVersionDescriptor</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: ExcludeDeletes -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>ExcludeDeletes</maml:name>
          <maml:description />
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: FromCommit -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>FromCommit</maml:name>
          <maml:description />
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: FromDate -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>FromDate</maml:name>
          <maml:description />
          <command:parameterValue required="true">DateTime</command:parameterValue>
          <dev:type>
            <maml:name>System.DateTime</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>1/1/0001 12:00:00 AM</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: IncludeLinks -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>IncludeLinks</maml:name>
          <maml:description />
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: IncludePushData -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>IncludePushData</maml:name>
          <maml:description />
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: IncludeUserImageUrl -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>IncludeUserImageUrl</maml:name>
          <maml:description />
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: ItemPath -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>ItemPath</maml:name>
          <maml:description />
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Repository -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
          <maml:name>Repository</maml:name>
          <maml:description>
            <maml:para>Specifies the target Git repository. Valid values are the name of the repository, its ID (a GUID), or a Microsoft.TeamFoundation.SourceControl.WebApi.GitRepository object obtained by e.g. a call to Get-TfsGitRepository. When omitted, defaults to the team project name (i.e. the default repository). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: ShowOldestCommitsFirst -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>ShowOldestCommitsFirst</maml:name>
          <maml:description />
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Skip -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Skip</maml:name>
          <maml:description />
          <command:parameterValue required="true">int</command:parameterValue>
          <dev:type>
            <maml:name>System.Int32</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>0</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: ToCommit -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>ToCommit</maml:name>
          <maml:description />
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: ToDate -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>ToDate</maml:name>
          <maml:description />
          <command:parameterValue required="true">DateTime</command:parameterValue>
          <dev:type>
            <maml:name>System.DateTime</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>1/1/0001 12:00:00 AM</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Top -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Top</maml:name>
          <maml:description />
          <command:parameterValue required="true">int</command:parameterValue>
          <dev:type>
            <maml:name>System.Int32</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>0</dev:defaultValue>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Commit -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="0">
        <maml:name>Commit</maml:name>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Tag -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
        <maml:name>Tag</maml:name>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Branch -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
        <maml:name>Branch</maml:name>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Author -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Author</maml:name>
        <maml:description />
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Committer -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Committer</maml:name>
        <maml:description />
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: CompareVersion -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>CompareVersion</maml:name>
        <maml:description />
        <command:parameterValue required="true">GitVersionDescriptor</command:parameterValue>
        <dev:type>
          <maml:name>Microsoft.TeamFoundation.SourceControl.WebApi.GitVersionDescriptor</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: FromCommit -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>FromCommit</maml:name>
        <maml:description />
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: FromDate -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>FromDate</maml:name>
        <maml:description />
        <command:parameterValue required="true">DateTime</command:parameterValue>
        <dev:type>
          <maml:name>System.DateTime</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>1/1/0001 12:00:00 AM</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: ItemPath -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>ItemPath</maml:name>
        <maml:description />
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: ToCommit -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>ToCommit</maml:name>
        <maml:description />
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: ToDate -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>ToDate</maml:name>
        <maml:description />
        <command:parameterValue required="true">DateTime</command:parameterValue>
        <dev:type>
          <maml:name>System.DateTime</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>1/1/0001 12:00:00 AM</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: ExcludeDeletes -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>ExcludeDeletes</maml:name>
        <maml:description />
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: IncludeLinks -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>IncludeLinks</maml:name>
        <maml:description />
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: IncludePushData -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>IncludePushData</maml:name>
        <maml:description />
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: IncludeUserImageUrl -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>IncludeUserImageUrl</maml:name>
        <maml:description />
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: ShowOldestCommitsFirst -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>ShowOldestCommitsFirst</maml:name>
        <maml:description />
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Skip -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Skip</maml:name>
        <maml:description />
        <command:parameterValue required="true">int</command:parameterValue>
        <dev:type>
          <maml:name>System.Int32</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>0</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Top -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Top</maml:name>
        <maml:description />
        <command:parameterValue required="true">int</command:parameterValue>
        <dev:type>
          <maml:name>System.Int32</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>0</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Repository -->
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
        <maml:name>Repository</maml:name>
        <maml:description>
          <maml:para>Specifies the target Git repository. Valid values are the name of the repository, its ID (a GUID), or a Microsoft.TeamFoundation.SourceControl.WebApi.GitRepository object obtained by e.g. a call to Get-TfsGitRepository. When omitted, defaults to the team project name (i.e. the default repository). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Organization</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          <maml:para>This is an alias of the Collection parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Server -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Server</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the target Git repository. Valid values are the name of the repository, its ID (a GUID), or a Microsoft.TeamFoundation.SourceControl.WebApi.GitRepository object obtained by e.g. a call to Get-TfsGitRepository. When omitted, defaults to the team project name (i.e. the default repository). </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: GitCommitRef -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.TeamFoundation.SourceControl.WebApi.GitCommitRef</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/Git/Commit/Get-TfsGitCommit</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Get-TfsGitItem -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Git.Item">
    <command:details>
      <command:name>Get-TfsGitItem</command:name>
      <command:verb>Get</command:verb>
      <command:noun>TfsGitItem</command:noun>
      <maml:description>
        <maml:para>Gets information from one or more items (folders and/or files) in a remote Git repository. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: Get by commit SHA -->
      <command:syntaxItem tfscmdlets:parameterSet="Get by commit SHA">
        <maml:name>Get-TfsGitItem</maml:name>
        <!-- Parameter: Item -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Path">
          <maml:name>Item</maml:name>
          <maml:description>
            <maml:para>Specifies the path to items (folders and/or files) in the supplied Git repository. Wildcards are supported. When omitted, all items in the root of the Git repository are retrieved. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>/*</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Commit -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Commit</maml:name>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: IncludeContent -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>IncludeContent</maml:name>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: IncludeMetadata -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>IncludeMetadata</maml:name>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Repository -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
          <maml:name>Repository</maml:name>
          <maml:description>
            <maml:para>Specifies the target Git repository. Valid values are the name of the repository, its ID (a GUID), or a Microsoft.TeamFoundation.SourceControl.WebApi.GitRepository object obtained by e.g. a call to Get-TfsGitRepository. When omitted, defaults to the team project name (i.e. the default repository). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
      <!-- Parameter Set: Get by tag -->
      <command:syntaxItem tfscmdlets:parameterSet="Get by tag">
        <maml:name>Get-TfsGitItem</maml:name>
        <!-- Parameter: Item -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Path">
          <maml:name>Item</maml:name>
          <maml:description>
            <maml:para>Specifies the path to items (folders and/or files) in the supplied Git repository. Wildcards are supported. When omitted, all items in the root of the Git repository are retrieved. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>/*</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Tag -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
          <maml:name>Tag</maml:name>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: IncludeContent -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>IncludeContent</maml:name>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: IncludeMetadata -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>IncludeMetadata</maml:name>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Repository -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
          <maml:name>Repository</maml:name>
          <maml:description>
            <maml:para>Specifies the target Git repository. Valid values are the name of the repository, its ID (a GUID), or a Microsoft.TeamFoundation.SourceControl.WebApi.GitRepository object obtained by e.g. a call to Get-TfsGitRepository. When omitted, defaults to the team project name (i.e. the default repository). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
      <!-- Parameter Set: Get by branch -->
      <command:syntaxItem tfscmdlets:parameterSet="Get by branch">
        <maml:name>Get-TfsGitItem</maml:name>
        <!-- Parameter: Item -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Path">
          <maml:name>Item</maml:name>
          <maml:description>
            <maml:para>Specifies the path to items (folders and/or files) in the supplied Git repository. Wildcards are supported. When omitted, all items in the root of the Git repository are retrieved. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>/*</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Branch -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
          <maml:name>Branch</maml:name>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: IncludeContent -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>IncludeContent</maml:name>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: IncludeMetadata -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>IncludeMetadata</maml:name>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Repository -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
          <maml:name>Repository</maml:name>
          <maml:description>
            <maml:para>Specifies the target Git repository. Valid values are the name of the repository, its ID (a GUID), or a Microsoft.TeamFoundation.SourceControl.WebApi.GitRepository object obtained by e.g. a call to Get-TfsGitRepository. When omitted, defaults to the team project name (i.e. the default repository). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Item -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Path">
        <maml:name>Item</maml:name>
        <maml:description>
          <maml:para>Specifies the path to items (folders and/or files) in the supplied Git repository. Wildcards are supported. When omitted, all items in the root of the Git repository are retrieved. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>/*</dev:defaultValue>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Path">
        <maml:name>Path</maml:name>
        <maml:description>
          <maml:para>Specifies the path to items (folders and/or files) in the supplied Git repository. Wildcards are supported. When omitted, all items in the root of the Git repository are retrieved. </maml:para>
          <maml:para>This is an alias of the Item parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>/*</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Commit -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Commit</maml:name>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Tag -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
        <maml:name>Tag</maml:name>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Branch -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
        <maml:name>Branch</maml:name>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: IncludeContent -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>IncludeContent</maml:name>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: IncludeMetadata -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>IncludeMetadata</maml:name>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Repository -->
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
        <maml:name>Repository</maml:name>
        <maml:description>
          <maml:para>Specifies the target Git repository. Valid values are the name of the repository, its ID (a GUID), or a Microsoft.TeamFoundation.SourceControl.WebApi.GitRepository object obtained by e.g. a call to Get-TfsGitRepository. When omitted, defaults to the team project name (i.e. the default repository). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Organization</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          <maml:para>This is an alias of the Collection parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Server -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Server</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the target Git repository. Valid values are the name of the repository, its ID (a GUID), or a Microsoft.TeamFoundation.SourceControl.WebApi.GitRepository object obtained by e.g. a call to Get-TfsGitRepository. When omitted, defaults to the team project name (i.e. the default repository). </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: GitItem -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.TeamFoundation.SourceControl.WebApi.GitItem</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/Git/Item/Get-TfsGitItem</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Get-TfsGitPolicyType -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Git.Policy">
    <command:details>
      <command:name>Get-TfsGitPolicyType</command:name>
      <command:verb>Get</command:verb>
      <command:noun>TfsGitPolicyType</command:noun>
      <maml:description>
        <maml:para>Gets one or more Git branch policies supported by the given team project. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Get-TfsGitPolicyType</maml:name>
        <!-- Parameter: PolicyType -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name">
          <maml:name>PolicyType</maml:name>
          <maml:description>
            <maml:para>Specifies the display name or ID of the policy type. Wildcards are supported. When omitted, all policy types supported by the given team project are returned. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>*</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: PolicyType -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name">
        <maml:name>PolicyType</maml:name>
        <maml:description>
          <maml:para>Specifies the display name or ID of the policy type. Wildcards are supported. When omitted, all policy types supported by the given team project are returned. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>*</dev:defaultValue>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name">
        <maml:name>Name</maml:name>
        <maml:description>
          <maml:para>Specifies the display name or ID of the policy type. Wildcards are supported. When omitted, all policy types supported by the given team project are returned. </maml:para>
          <maml:para>This is an alias of the PolicyType parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>*</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Organization</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          <maml:para>This is an alias of the Collection parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Server -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Server</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: PolicyType -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.TeamFoundation.Policy.WebApi.PolicyType</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/Git/Policy/Get-TfsGitPolicyType</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Disable-TfsGitRepository -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Git">
    <command:details>
      <command:name>Disable-TfsGitRepository</command:name>
      <command:verb>Disable</command:verb>
      <command:noun>TfsGitRepository</command:noun>
      <maml:description>
        <maml:para>Disables one or more Git repositories. </maml:para>
      </maml:description>
    </command:details>
    <maml:description>
      <maml:para>Disables access to the repository. When a repository is disabled it cannot be accessed (including clones, pulls, pushes, builds, pull requests etc) but remains discoverable, with a warning message stating it is disabled. </maml:para>
    </maml:description>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Disable-TfsGitRepository</maml:name>
        <!-- Parameter: Repository -->
        <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Name">
          <maml:name>Repository</maml:name>
          <maml:description>
            <maml:para>Specifies the name or ID of a Git repository. Wildcards are supported. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Passthru -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Passthru</maml:name>
          <maml:description>
            <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Repository -->
      <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Name">
        <maml:name>Repository</maml:name>
        <maml:description>
          <maml:para>Specifies the name or ID of a Git repository. Wildcards are supported. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Name">
        <maml:name>Name</maml:name>
        <maml:description>
          <maml:para>Specifies the name or ID of a Git repository. Wildcards are supported. </maml:para>
          <maml:para>This is an alias of the Repository parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Passthru -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Passthru</maml:name>
        <maml:description>
          <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Organization</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          <maml:para>This is an alias of the Collection parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Server -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Server</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the name or ID of a Git repository. Wildcards are supported. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: GitRepository -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.TeamFoundation.SourceControl.WebApi.GitRepository</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/Git/Disable-TfsGitRepository</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Enable-TfsGitRepository -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Git">
    <command:details>
      <command:name>Enable-TfsGitRepository</command:name>
      <command:verb>Enable</command:verb>
      <command:noun>TfsGitRepository</command:noun>
      <maml:description>
        <maml:para>Enables one or more Git repositories. </maml:para>
      </maml:description>
    </command:details>
    <maml:description>
      <maml:para>This cmdlets re-enables access to a repository. When a repository is disabled it cannot be accessed (including clones, pulls, pushes, builds, pull requests etc) but remains discoverable, with a warning message stating it is disabled. </maml:para>
    </maml:description>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Enable-TfsGitRepository</maml:name>
        <!-- Parameter: Repository -->
        <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Name">
          <maml:name>Repository</maml:name>
          <maml:description>
            <maml:para>Specifies the name or ID of a Git repository. Wildcards are supported. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Passthru -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Passthru</maml:name>
          <maml:description>
            <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Repository -->
      <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Name">
        <maml:name>Repository</maml:name>
        <maml:description>
          <maml:para>Specifies the name or ID of a Git repository. Wildcards are supported. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Name">
        <maml:name>Name</maml:name>
        <maml:description>
          <maml:para>Specifies the name or ID of a Git repository. Wildcards are supported. </maml:para>
          <maml:para>This is an alias of the Repository parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Passthru -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Passthru</maml:name>
        <maml:description>
          <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Organization</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          <maml:para>This is an alias of the Collection parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Server -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Server</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the name or ID of a Git repository. Wildcards are supported. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: GitRepository -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.TeamFoundation.SourceControl.WebApi.GitRepository</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/Git/Enable-TfsGitRepository</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Get-TfsGitRepository -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Git">
    <command:details>
      <command:name>Get-TfsGitRepository</command:name>
      <command:verb>Get</command:verb>
      <command:noun>TfsGitRepository</command:noun>
      <maml:description>
        <maml:para>Gets information from one or more Git repositories in a team project. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: Get by ID or Name -->
      <command:syntaxItem tfscmdlets:parameterSet="Get by ID or Name">
        <maml:name>Get-TfsGitRepository</maml:name>
        <!-- Parameter: Repository -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name">
          <maml:name>Repository</maml:name>
          <maml:description>
            <maml:para>Specifies the name or ID of a Git repository. Wildcards are supported. When omitted, all Git repositories in the supplied team project are returned. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>*</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: IncludeParent -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>IncludeParent</maml:name>
          <maml:description>
            <maml:para>Returns details about the repository's parent (forked) repository, if it has one. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
      <!-- Parameter Set: Get default -->
      <command:syntaxItem tfscmdlets:parameterSet="Get default">
        <maml:name>Get-TfsGitRepository</maml:name>
        <!-- Parameter: Default -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
          <maml:name>Default</maml:name>
          <maml:description>
            <maml:para>Returns the default repository in the given team project. The default repository is the one that is created when a team project is created, and has the same name as the team project. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: IncludeParent -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>IncludeParent</maml:name>
          <maml:description>
            <maml:para>Returns details about the repository's parent (forked) repository, if it has one. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Repository -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name">
        <maml:name>Repository</maml:name>
        <maml:description>
          <maml:para>Specifies the name or ID of a Git repository. Wildcards are supported. When omitted, all Git repositories in the supplied team project are returned. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>*</dev:defaultValue>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name">
        <maml:name>Name</maml:name>
        <maml:description>
          <maml:para>Specifies the name or ID of a Git repository. Wildcards are supported. When omitted, all Git repositories in the supplied team project are returned. </maml:para>
          <maml:para>This is an alias of the Repository parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>*</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Default -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
        <maml:name>Default</maml:name>
        <maml:description>
          <maml:para>Returns the default repository in the given team project. The default repository is the one that is created when a team project is created, and has the same name as the team project. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: IncludeParent -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>IncludeParent</maml:name>
        <maml:description>
          <maml:para>Returns details about the repository's parent (forked) repository, if it has one. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Organization</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          <maml:para>This is an alias of the Collection parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Server -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Server</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: GitRepository -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.TeamFoundation.SourceControl.WebApi.GitRepository</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/Git/Get-TfsGitRepository</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: New-TfsGitRepository -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Git">
    <command:details>
      <command:name>New-TfsGitRepository</command:name>
      <command:verb>New</command:verb>
      <command:noun>TfsGitRepository</command:noun>
      <maml:description>
        <maml:para>Creates a new Git repository in a team project. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>New-TfsGitRepository</maml:name>
        <!-- Parameter: Repository -->
        <command:parameter required="true" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Name">
          <maml:name>Repository</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the new repository </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: ForkFrom -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>ForkFrom</maml:name>
          <maml:description>
            <maml:para>Forks the specified reposity. To fork a repository from another team project, specify the repository name in the form "project/repository" or pass in the result of a previous call to Get-TfsGitRepository that returns the source repository. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Passthru -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Passthru</maml:name>
          <maml:description>
            <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: SourceBranch -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>SourceBranch</maml:name>
          <maml:description>
            <maml:para>Forks the specified branch in the source repository. When omitted, forks all branches. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Repository -->
      <command:parameter required="true" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Name">
        <maml:name>Repository</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the new repository </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="true" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Name">
        <maml:name>Name</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the new repository </maml:para>
          <maml:para>This is an alias of the Repository parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: ForkFrom -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>ForkFrom</maml:name>
        <maml:description>
          <maml:para>Forks the specified reposity. To fork a repository from another team project, specify the repository name in the form "project/repository" or pass in the result of a previous call to Get-TfsGitRepository that returns the source repository. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: SourceBranch -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>SourceBranch</maml:name>
        <maml:description>
          <maml:para>Forks the specified branch in the source repository. When omitted, forks all branches. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Passthru -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Passthru</maml:name>
        <maml:description>
          <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Organization</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          <maml:para>This is an alias of the Collection parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Server -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Server</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the name of the new repository </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: GitRepository -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.TeamFoundation.SourceControl.WebApi.GitRepository</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/Git/New-TfsGitRepository</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Remove-TfsGitRepository -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Git">
    <command:details>
      <command:name>Remove-TfsGitRepository</command:name>
      <command:verb>Remove</command:verb>
      <command:noun>TfsGitRepository</command:noun>
      <maml:description>
        <maml:para>Deletes one or more Git repositories from a team project. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Remove-TfsGitRepository</maml:name>
        <!-- Parameter: Repository -->
        <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Name">
          <maml:name>Repository</maml:name>
          <maml:description>
            <maml:para>Specifies the repository to be deleted. Value can be the name or ID of a Git repository, as well as a Microsoft.TeamFoundation.SourceControl.WebApi.GitRepository object representing a Git repository. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Force -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Force</maml:name>
          <maml:description>
            <maml:para>Forces the exclusion of the item. When omitted, the command prompts for confirmation prior to deleting the item. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Repository -->
      <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Name">
        <maml:name>Repository</maml:name>
        <maml:description>
          <maml:para>Specifies the repository to be deleted. Value can be the name or ID of a Git repository, as well as a Microsoft.TeamFoundation.SourceControl.WebApi.GitRepository object representing a Git repository. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Name">
        <maml:name>Name</maml:name>
        <maml:description>
          <maml:para>Specifies the repository to be deleted. Value can be the name or ID of a Git repository, as well as a Microsoft.TeamFoundation.SourceControl.WebApi.GitRepository object representing a Git repository. </maml:para>
          <maml:para>This is an alias of the Repository parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Force -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Force</maml:name>
        <maml:description>
          <maml:para>Forces the exclusion of the item. When omitted, the command prompts for confirmation prior to deleting the item. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Organization</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          <maml:para>This is an alias of the Collection parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Server -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Server</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the repository to be deleted. Value can be the name or ID of a Git repository, as well as a Microsoft.TeamFoundation.SourceControl.WebApi.GitRepository object representing a Git repository. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues />
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/Git/Remove-TfsGitRepository</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Rename-TfsGitRepository -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Git">
    <command:details>
      <command:name>Rename-TfsGitRepository</command:name>
      <command:verb>Rename</command:verb>
      <command:noun>TfsGitRepository</command:noun>
      <maml:description>
        <maml:para>Renames a Git repository in a team project. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Rename-TfsGitRepository</maml:name>
        <!-- Parameter: Repository -->
        <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0">
          <maml:name>Repository</maml:name>
          <maml:description>
            <maml:para>Specifies the repository to be renamed. Value can be the name or ID of a Git repository, as well as a Microsoft.TeamFoundation.SourceControl.WebApi.GitRepository object representing a Git repository. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: NewName -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="1">
          <maml:name>NewName</maml:name>
          <maml:description>
            <maml:para>Specifies the new name of the item. Enter only a name - i.e., for items that support paths, do not enter a path and name. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Repository -->
      <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0">
        <maml:name>Repository</maml:name>
        <maml:description>
          <maml:para>Specifies the repository to be renamed. Value can be the name or ID of a Git repository, as well as a Microsoft.TeamFoundation.SourceControl.WebApi.GitRepository object representing a Git repository. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: NewName -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="1">
        <maml:name>NewName</maml:name>
        <maml:description>
          <maml:para>Specifies the new name of the item. Enter only a name - i.e., for items that support paths, do not enter a path and name. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Organization</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          <maml:para>This is an alias of the Collection parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Server -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Server</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the repository to be renamed. Value can be the name or ID of a Git repository, as well as a Microsoft.TeamFoundation.SourceControl.WebApi.GitRepository object representing a Git repository. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: GitRepository -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.TeamFoundation.SourceControl.WebApi.GitRepository</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/Git/Rename-TfsGitRepository</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Get-TfsGroup -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Identity.Group">
    <command:details>
      <command:name>Get-TfsGroup</command:name>
      <command:verb>Get</command:verb>
      <command:noun>TfsGroup</command:noun>
      <maml:description>
        <maml:para>Gets one or more Azure DevOps groups. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Get-TfsGroup</maml:name>
        <!-- Parameter: Group -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="0">
          <maml:name>Group</maml:name>
          <maml:description>
            <maml:para>Specifies the group to be retrieved. Supported values are: Group name or ID. Wildcards are supported. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>*</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Recurse -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Recurse</maml:name>
          <maml:description>
            <maml:para>Searches recursively for groups in the scopes under the specified scope. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Scope -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Scope</maml:name>
          <maml:description>
            <maml:para>Specifies the scope under which to search for the group. When omitted, defaults to the Collection scope. </maml:para>
            <maml:para>Possible values: Server, Collection, Project</maml:para>
          </maml:description>
          <command:parameterValue required="true">GroupScope</command:parameterValue>
          <dev:type>
            <maml:name>TfsCmdlets.GroupScope</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>Collection</dev:defaultValue>
          <command:parameterValueGroup>
            <command:parameterValue required="false" variableLength="false">Server</command:parameterValue>
            <command:parameterValue required="false" variableLength="false">Collection</command:parameterValue>
            <command:parameterValue required="false" variableLength="false">Project</command:parameterValue>
          </command:parameterValueGroup>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Group -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0">
        <maml:name>Group</maml:name>
        <maml:description>
          <maml:para>Specifies the group to be retrieved. Supported values are: Group name or ID. Wildcards are supported. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>*</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Scope -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Scope</maml:name>
        <maml:description>
          <maml:para>Specifies the scope under which to search for the group. When omitted, defaults to the Collection scope. </maml:para>
          <maml:para>Possible values: Server, Collection, Project</maml:para>
        </maml:description>
        <command:parameterValue required="true">GroupScope</command:parameterValue>
        <dev:type>
          <maml:name>TfsCmdlets.GroupScope</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>Collection</dev:defaultValue>
        <command:parameterValueGroup>
          <command:parameterValue required="false" variableLength="false">Server</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">Collection</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">Project</command:parameterValue>
        </command:parameterValueGroup>
      </command:parameter>
      <!-- Parameter: Recurse -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Recurse</maml:name>
        <maml:description>
          <maml:para>Searches recursively for groups in the scopes under the specified scope. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Organization</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          <maml:para>This is an alias of the Collection parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Server -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Server</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: GraphGroup -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.VisualStudio.Services.Graph.Client.GraphGroup</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/Identity/Group/Get-TfsGroup</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: New-TfsGroup -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Identity.Group">
    <command:details>
      <command:name>New-TfsGroup</command:name>
      <command:verb>New</command:verb>
      <command:noun>TfsGroup</command:noun>
      <maml:description>
        <maml:para>Creates a new Azure DevOps group. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>New-TfsGroup</maml:name>
        <!-- Parameter: Group -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="0">
          <maml:name>Group</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the new group. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Description -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Description</maml:name>
          <maml:description>
            <maml:para>Specifies a description for the new group. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Passthru -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Passthru</maml:name>
          <maml:description>
            <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Scope -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Scope</maml:name>
          <maml:description>
            <maml:para>Specifies the scope under which to create the group. When omitted, defaults to the Collection scope. </maml:para>
            <maml:para>Possible values: Server, Collection, Project</maml:para>
          </maml:description>
          <command:parameterValue required="true">GroupScope</command:parameterValue>
          <dev:type>
            <maml:name>TfsCmdlets.GroupScope</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>Collection</dev:defaultValue>
          <command:parameterValueGroup>
            <command:parameterValue required="false" variableLength="false">Server</command:parameterValue>
            <command:parameterValue required="false" variableLength="false">Collection</command:parameterValue>
            <command:parameterValue required="false" variableLength="false">Project</command:parameterValue>
          </command:parameterValueGroup>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Group -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0">
        <maml:name>Group</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the new group. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Description -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Description</maml:name>
        <maml:description>
          <maml:para>Specifies a description for the new group. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Scope -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Scope</maml:name>
        <maml:description>
          <maml:para>Specifies the scope under which to create the group. When omitted, defaults to the Collection scope. </maml:para>
          <maml:para>Possible values: Server, Collection, Project</maml:para>
        </maml:description>
        <command:parameterValue required="true">GroupScope</command:parameterValue>
        <dev:type>
          <maml:name>TfsCmdlets.GroupScope</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>Collection</dev:defaultValue>
        <command:parameterValueGroup>
          <command:parameterValue required="false" variableLength="false">Server</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">Collection</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">Project</command:parameterValue>
        </command:parameterValueGroup>
      </command:parameter>
      <!-- Parameter: Passthru -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Passthru</maml:name>
        <maml:description>
          <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Organization</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          <maml:para>This is an alias of the Collection parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Server -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Server</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes />
    <command:returnValues>
      <!-- OutputType: GraphGroup -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.VisualStudio.Services.Graph.Client.GraphGroup</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/Identity/Group/New-TfsGroup</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Remove-TfsGroup -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Identity.Group">
    <command:details>
      <command:name>Remove-TfsGroup</command:name>
      <command:verb>Remove</command:verb>
      <command:noun>TfsGroup</command:noun>
      <maml:description>
        <maml:para>Removes an Azure DevOps group. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Remove-TfsGroup</maml:name>
        <!-- Parameter: Group -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0">
          <maml:name>Group</maml:name>
          <maml:description>
            <maml:para>Specifies the group to be removed. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>*</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Scope -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Scope</maml:name>
          <maml:description>
            <maml:para>Specifies the scope under which to search for the group. When omitted, defaults to the Collection scope. </maml:para>
            <maml:para>Possible values: Server, Collection, Project</maml:para>
          </maml:description>
          <command:parameterValue required="true">GroupScope</command:parameterValue>
          <dev:type>
            <maml:name>TfsCmdlets.GroupScope</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>Collection</dev:defaultValue>
          <command:parameterValueGroup>
            <command:parameterValue required="false" variableLength="false">Server</command:parameterValue>
            <command:parameterValue required="false" variableLength="false">Collection</command:parameterValue>
            <command:parameterValue required="false" variableLength="false">Project</command:parameterValue>
          </command:parameterValueGroup>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Group -->
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0">
        <maml:name>Group</maml:name>
        <maml:description>
          <maml:para>Specifies the group to be removed. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>*</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Scope -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Scope</maml:name>
        <maml:description>
          <maml:para>Specifies the scope under which to search for the group. When omitted, defaults to the Collection scope. </maml:para>
          <maml:para>Possible values: Server, Collection, Project</maml:para>
        </maml:description>
        <command:parameterValue required="true">GroupScope</command:parameterValue>
        <dev:type>
          <maml:name>TfsCmdlets.GroupScope</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>Collection</dev:defaultValue>
        <command:parameterValueGroup>
          <command:parameterValue required="false" variableLength="false">Server</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">Collection</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">Project</command:parameterValue>
        </command:parameterValueGroup>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Organization</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          <maml:para>This is an alias of the Collection parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Server -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Server</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the group to be removed. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: GraphGroup -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.VisualStudio.Services.Graph.Client.GraphGroup</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/Identity/Group/Remove-TfsGroup</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Add-TfsGroupMember -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Identity.Group">
    <command:details>
      <command:name>Add-TfsGroupMember</command:name>
      <command:verb>Add</command:verb>
      <command:noun>TfsGroupMember</command:noun>
      <maml:description>
        <maml:para>Adds group members to an Azure DevOps group. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Add-TfsGroupMember</maml:name>
        <!-- Parameter: Member -->
        <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0">
          <maml:name>Member</maml:name>
          <maml:description>
            <maml:para>Specifies the member (user or group) to add to the given group. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Group -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="1">
          <maml:name>Group</maml:name>
          <maml:description>
            <maml:para>Specifies the group to which the member is added. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Member -->
      <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0">
        <maml:name>Member</maml:name>
        <maml:description>
          <maml:para>Specifies the member (user or group) to add to the given group. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Group -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="1">
        <maml:name>Group</maml:name>
        <maml:description>
          <maml:para>Specifies the group to which the member is added. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Organization</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          <maml:para>This is an alias of the Collection parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Server -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Server</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the member (user or group) to add to the given group. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues />
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/Identity/Group/Add-TfsGroupMember</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Get-TfsGroupMember -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Identity.Group">
    <command:details>
      <command:name>Get-TfsGroupMember</command:name>
      <command:verb>Get</command:verb>
      <command:noun>TfsGroupMember</command:noun>
      <maml:description>
        <maml:para>Gets the members of a Azure DevOps group </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Get-TfsGroupMember</maml:name>
        <!-- Parameter: Group -->
        <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0">
          <maml:name>Group</maml:name>
          <maml:description>
            <maml:para>Specifies the group fom which to get its members. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Member -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="1">
          <maml:name>Member</maml:name>
          <maml:description>
            <maml:para>Specifies the member (user or group) to get from the given group. Wildcards are supported. When omitted, all group members are returned. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>*</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named" aliases="Organization">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Recurse -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Recurse</maml:name>
          <maml:description>
            <maml:para>Recursively expands all member groups, returning the users and/or groups contained in them </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Group -->
      <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0">
        <maml:name>Group</maml:name>
        <maml:description>
          <maml:para>Specifies the group fom which to get its members. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Member -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="1">
        <maml:name>Member</maml:name>
        <maml:description>
          <maml:para>Specifies the member (user or group) to get from the given group. Wildcards are supported. When omitted, all group members are returned. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>*</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Recurse -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Recurse</maml:name>
        <maml:description>
          <maml:para>Recursively expands all member groups, returning the users and/or groups contained in them </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named" aliases="Organization">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named" aliases="Organization">
        <maml:name>Organization</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          <maml:para>This is an alias of the Collection parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Server -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Server</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the group fom which to get its members. </maml:para>
        </maml:description>
      </command:inputType>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: Identity -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.VisualStudio.Services.Identity.Identity</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/Identity/Group/Get-TfsGroupMember</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Remove-TfsGroupMember -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Identity.Group">
    <command:details>
      <command:name>Remove-TfsGroupMember</command:name>
      <command:verb>Remove</command:verb>
      <command:noun>TfsGroupMember</command:noun>
      <maml:description>
        <maml:para>Removes a member from an Azure DevOps group. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Remove-TfsGroupMember</maml:name>
        <!-- Parameter: Member -->
        <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0">
          <maml:name>Member</maml:name>
          <maml:description>
            <maml:para>Specifies the member (user or group) to remove from the given group. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Group -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="1">
          <maml:name>Group</maml:name>
          <maml:description>
            <maml:para>Specifies the group from which the member is removed. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Member -->
      <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0">
        <maml:name>Member</maml:name>
        <maml:description>
          <maml:para>Specifies the member (user or group) to remove from the given group. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Group -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="1">
        <maml:name>Group</maml:name>
        <maml:description>
          <maml:para>Specifies the group from which the member is removed. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Organization</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          <maml:para>This is an alias of the Collection parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Server -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Server</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the member (user or group) to remove from the given group. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues />
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/Identity/Group/Remove-TfsGroupMember</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Get-TfsIdentity -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Identity">
    <command:details>
      <command:name>Get-TfsIdentity</command:name>
      <command:verb>Get</command:verb>
      <command:noun>TfsIdentity</command:noun>
      <maml:description>
        <maml:para>Gets one or more identities that represents either users or groups in Azure DevOps. This cmdlets resolves legacy identity information for use with older APIs such as the Security APIs </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: Get Identity -->
      <command:syntaxItem tfscmdlets:parameterSet="Get Identity">
        <maml:name>Get-TfsIdentity</maml:name>
        <!-- Parameter: Identity -->
        <command:parameter required="true" globbing="false" pipelineInput="true (ByPropertyName)" position="0" aliases="User,Id,Group">
          <maml:name>Identity</maml:name>
          <maml:description>
            <maml:para>Specifies the user or group to be retrieved. Supported values are: User/group name, email, or ID </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: QueryMembership -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>QueryMembership</maml:name>
          <maml:description>
            <maml:para>Specifies how group membership information should be processed when the returned identity is a group. "Direct" fetches direct members (both users and groups) of the group. "Expanded" expands contained groups recursively and returns their contained users. "None" is the fastest option as it fetches no membership information. When omitted, defaults to Direct. </maml:para>
            <maml:para>Possible values: None, Direct, Expanded, ExpandedUp, ExpandedDown</maml:para>
          </maml:description>
          <command:parameterValue required="true">QueryMembership</command:parameterValue>
          <dev:type>
            <maml:name>Microsoft.VisualStudio.Services.Identity.QueryMembership</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>Direct</dev:defaultValue>
          <command:parameterValueGroup>
            <command:parameterValue required="false" variableLength="false">None</command:parameterValue>
            <command:parameterValue required="false" variableLength="false">Direct</command:parameterValue>
            <command:parameterValue required="false" variableLength="false">Expanded</command:parameterValue>
            <command:parameterValue required="false" variableLength="false">ExpandedUp</command:parameterValue>
            <command:parameterValue required="false" variableLength="false">ExpandedDown</command:parameterValue>
          </command:parameterValueGroup>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
      <!-- Parameter Set: Get current user -->
      <command:syntaxItem tfscmdlets:parameterSet="Get current user">
        <maml:name>Get-TfsIdentity</maml:name>
        <!-- Parameter: Current -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
          <maml:name>Current</maml:name>
          <maml:description>
            <maml:para>Returns an identity representing the user currently logged in to the Azure DevOps / TFS instance </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Identity -->
      <command:parameter required="true" globbing="false" pipelineInput="true (ByPropertyName)" position="0" aliases="User,Id,Group">
        <maml:name>Identity</maml:name>
        <maml:description>
          <maml:para>Specifies the user or group to be retrieved. Supported values are: User/group name, email, or ID </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="true" globbing="false" pipelineInput="true (ByPropertyName)" position="0" aliases="User,Id,Group">
        <maml:name>User</maml:name>
        <maml:description>
          <maml:para>Specifies the user or group to be retrieved. Supported values are: User/group name, email, or ID </maml:para>
          <maml:para>This is an alias of the Identity parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="true" globbing="false" pipelineInput="true (ByPropertyName)" position="0" aliases="User,Id,Group">
        <maml:name>Id</maml:name>
        <maml:description>
          <maml:para>Specifies the user or group to be retrieved. Supported values are: User/group name, email, or ID </maml:para>
          <maml:para>This is an alias of the Identity parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="true" globbing="false" pipelineInput="true (ByPropertyName)" position="0" aliases="User,Id,Group">
        <maml:name>Group</maml:name>
        <maml:description>
          <maml:para>Specifies the user or group to be retrieved. Supported values are: User/group name, email, or ID </maml:para>
          <maml:para>This is an alias of the Identity parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: QueryMembership -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>QueryMembership</maml:name>
        <maml:description>
          <maml:para>Specifies how group membership information should be processed when the returned identity is a group. "Direct" fetches direct members (both users and groups) of the group. "Expanded" expands contained groups recursively and returns their contained users. "None" is the fastest option as it fetches no membership information. When omitted, defaults to Direct. </maml:para>
          <maml:para>Possible values: None, Direct, Expanded, ExpandedUp, ExpandedDown</maml:para>
        </maml:description>
        <command:parameterValue required="true">QueryMembership</command:parameterValue>
        <dev:type>
          <maml:name>Microsoft.VisualStudio.Services.Identity.QueryMembership</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>Direct</dev:defaultValue>
        <command:parameterValueGroup>
          <command:parameterValue required="false" variableLength="false">None</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">Direct</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">Expanded</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">ExpandedUp</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">ExpandedDown</command:parameterValue>
        </command:parameterValueGroup>
      </command:parameter>
      <!-- Parameter: Current -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
        <maml:name>Current</maml:name>
        <maml:description>
          <maml:para>Returns an identity representing the user currently logged in to the Azure DevOps / TFS instance </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Organization</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          <maml:para>This is an alias of the Collection parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Server -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Server</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the user or group to be retrieved. Supported values are: User/group name, email, or ID </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: Identity -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.VisualStudio.Services.Identity.Identity</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/Identity/Get-TfsIdentity</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Get-TfsInstallationPath -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Admin">
    <command:details>
      <command:name>Get-TfsInstallationPath</command:name>
      <command:verb>Get</command:verb>
      <command:noun>TfsInstallationPath</command:noun>
      <maml:description>
        <maml:para>Gets the installation path of a given Team Foundation Server component. </maml:para>
      </maml:description>
    </command:details>
    <maml:description>
      <maml:para>Many times a Team Foundation Server admin needs to retrieve the location where TFS is actually installed. That can be useful, for instance, to locate tools like TfsSecurity or TfsServiceControl. That information is recorded at setup time, in a well-known location in the Windows Registry of the server where TFS is installed. </maml:para>
    </maml:description>
    <command:syntax>
      <!-- Parameter Set: Use computer name -->
      <command:syntaxItem tfscmdlets:parameterSet="Use computer name">
        <maml:name>Get-TfsInstallationPath</maml:name>
        <!-- Parameter: Component -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Component</maml:name>
          <maml:description>
            <maml:para>Indicates the TFS component whose installation path is being searched for. For the main TFS installation directory, use BaseInstallation. When omitted, defaults to BaseInstallation. </maml:para>
            <maml:para>Possible values: BaseInstallation, ApplicationTier, SharePointExtensions, TeamBuild, Tools, VersionControlProxy</maml:para>
          </maml:description>
          <command:parameterValue required="true">TfsComponent</command:parameterValue>
          <dev:type>
            <maml:name>TfsCmdlets.TfsComponent</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>BaseInstallation</dev:defaultValue>
          <command:parameterValueGroup>
            <command:parameterValue required="false" variableLength="false">BaseInstallation</command:parameterValue>
            <command:parameterValue required="false" variableLength="false">ApplicationTier</command:parameterValue>
            <command:parameterValue required="false" variableLength="false">SharePointExtensions</command:parameterValue>
            <command:parameterValue required="false" variableLength="false">TeamBuild</command:parameterValue>
            <command:parameterValue required="false" variableLength="false">Tools</command:parameterValue>
            <command:parameterValue required="false" variableLength="false">VersionControlProxy</command:parameterValue>
          </command:parameterValueGroup>
        </command:parameter>
        <!-- Parameter: ComputerName -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>ComputerName</maml:name>
          <maml:description>
            <maml:para>The machine name of the server where the TFS component is installed. It must be properly configured for PowerShell Remoting in case it's a remote machine. Optionally, a System.Management.Automation.Runspaces.PSSession object pointing to a previously opened PowerShell Remote session can be provided instead. When omitted, defaults to the local machine where the script is being run </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>localhost</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Credential -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Credential</maml:name>
          <maml:description>
            <maml:para>The user credentials to be used to access a remote machine. Those credentials must have the required permission to execute a PowerShell Remote session on that computer and also the permission to access the Windows Registry. </maml:para>
          </maml:description>
          <command:parameterValue required="true">PSCredential</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.PSCredential</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>System.Management.Automation.PSCredential</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Version -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Version</maml:name>
          <maml:description>
            <maml:para>The TFS version number, represented by the year in its name. For e.g. TFS 2015, use "2015". When omitted, will default to the newest installed version of TFS / Azure DevOps Server </maml:para>
          </maml:description>
          <command:parameterValue required="true">int</command:parameterValue>
          <dev:type>
            <maml:name>System.Int32</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>0</dev:defaultValue>
        </command:parameter>
      </command:syntaxItem>
      <!-- Parameter Set: Use session -->
      <command:syntaxItem tfscmdlets:parameterSet="Use session">
        <maml:name>Get-TfsInstallationPath</maml:name>
        <!-- Parameter: Session -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
          <maml:name>Session</maml:name>
          <maml:description>
            <maml:para>The machine name of the server where the TFS component is installed. It must be properly configured for PowerShell Remoting in case it's a remote machine. Optionally, a System.Management.Automation.Runspaces.PSSession object pointing to a previously opened PowerShell Remote session can be provided instead. When omitted, defaults to the local machine where the script is being run </maml:para>
          </maml:description>
          <command:parameterValue required="true">PSSession</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.Runspaces.PSSession</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Component -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Component</maml:name>
          <maml:description>
            <maml:para>Indicates the TFS component whose installation path is being searched for. For the main TFS installation directory, use BaseInstallation. When omitted, defaults to BaseInstallation. </maml:para>
            <maml:para>Possible values: BaseInstallation, ApplicationTier, SharePointExtensions, TeamBuild, Tools, VersionControlProxy</maml:para>
          </maml:description>
          <command:parameterValue required="true">TfsComponent</command:parameterValue>
          <dev:type>
            <maml:name>TfsCmdlets.TfsComponent</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>BaseInstallation</dev:defaultValue>
          <command:parameterValueGroup>
            <command:parameterValue required="false" variableLength="false">BaseInstallation</command:parameterValue>
            <command:parameterValue required="false" variableLength="false">ApplicationTier</command:parameterValue>
            <command:parameterValue required="false" variableLength="false">SharePointExtensions</command:parameterValue>
            <command:parameterValue required="false" variableLength="false">TeamBuild</command:parameterValue>
            <command:parameterValue required="false" variableLength="false">Tools</command:parameterValue>
            <command:parameterValue required="false" variableLength="false">VersionControlProxy</command:parameterValue>
          </command:parameterValueGroup>
        </command:parameter>
        <!-- Parameter: Credential -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Credential</maml:name>
          <maml:description>
            <maml:para>The user credentials to be used to access a remote machine. Those credentials must have the required permission to execute a PowerShell Remote session on that computer and also the permission to access the Windows Registry. </maml:para>
          </maml:description>
          <command:parameterValue required="true">PSCredential</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.PSCredential</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>System.Management.Automation.PSCredential</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Version -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Version</maml:name>
          <maml:description>
            <maml:para>The TFS version number, represented by the year in its name. For e.g. TFS 2015, use "2015". When omitted, will default to the newest installed version of TFS / Azure DevOps Server </maml:para>
          </maml:description>
          <command:parameterValue required="true">int</command:parameterValue>
          <dev:type>
            <maml:name>System.Int32</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>0</dev:defaultValue>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: ComputerName -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>ComputerName</maml:name>
        <maml:description>
          <maml:para>The machine name of the server where the TFS component is installed. It must be properly configured for PowerShell Remoting in case it's a remote machine. Optionally, a System.Management.Automation.Runspaces.PSSession object pointing to a previously opened PowerShell Remote session can be provided instead. When omitted, defaults to the local machine where the script is being run </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>localhost</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Session -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
        <maml:name>Session</maml:name>
        <maml:description>
          <maml:para>The machine name of the server where the TFS component is installed. It must be properly configured for PowerShell Remoting in case it's a remote machine. Optionally, a System.Management.Automation.Runspaces.PSSession object pointing to a previously opened PowerShell Remote session can be provided instead. When omitted, defaults to the local machine where the script is being run </maml:para>
        </maml:description>
        <command:parameterValue required="true">PSSession</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.Runspaces.PSSession</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Component -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Component</maml:name>
        <maml:description>
          <maml:para>Indicates the TFS component whose installation path is being searched for. For the main TFS installation directory, use BaseInstallation. When omitted, defaults to BaseInstallation. </maml:para>
          <maml:para>Possible values: BaseInstallation, ApplicationTier, SharePointExtensions, TeamBuild, Tools, VersionControlProxy</maml:para>
        </maml:description>
        <command:parameterValue required="true">TfsComponent</command:parameterValue>
        <dev:type>
          <maml:name>TfsCmdlets.TfsComponent</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>BaseInstallation</dev:defaultValue>
        <command:parameterValueGroup>
          <command:parameterValue required="false" variableLength="false">BaseInstallation</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">ApplicationTier</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">SharePointExtensions</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">TeamBuild</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">Tools</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">VersionControlProxy</command:parameterValue>
        </command:parameterValueGroup>
      </command:parameter>
      <!-- Parameter: Version -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Version</maml:name>
        <maml:description>
          <maml:para>The TFS version number, represented by the year in its name. For e.g. TFS 2015, use "2015". When omitted, will default to the newest installed version of TFS / Azure DevOps Server </maml:para>
        </maml:description>
        <command:parameterValue required="true">int</command:parameterValue>
        <dev:type>
          <maml:name>System.Int32</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>0</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Credential -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Credential</maml:name>
        <maml:description>
          <maml:para>The user credentials to be used to access a remote machine. Those credentials must have the required permission to execute a PowerShell Remote session on that computer and also the permission to access the Windows Registry. </maml:para>
        </maml:description>
        <command:parameterValue required="true">PSCredential</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.PSCredential</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>System.Management.Automation.PSCredential</dev:defaultValue>
      </command:parameter>
    </command:parameters>
    <command:inputTypes />
    <command:returnValues>
      <!-- OutputType: String -->
      <command:returnValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <command:examples>
      <command:example>
        <maml:title>----------  EXAMPLE 1  ----------</maml:title>
        <dev:code>PS&gt; Get-TfsInstallationPath -Version 2017</dev:code>
        <dev:remarks>
          <maml:para>Gets the root folder (the BaseInstallationPath) of TFS in the local server where the cmdlet is being run</maml:para>
          <maml:para></maml:para>
        </dev:remarks>
      </command:example>
      <command:example>
        <maml:title>----------  EXAMPLE 2  ----------</maml:title>
        <dev:code>PS&gt; Get-TfsInstallationPath -Computer SPTFSSRV -Version 2015 -Component SharepointExtensions -Credentials (Get-Credentials)</dev:code>
        <dev:remarks>
          <maml:para>Gets the location where the SharePoint Extensions have been installed in the remote server SPTFSSRV, prompting for admin credentials to be used for establishing a PS Remoting session to the server</maml:para>
          <maml:para></maml:para>
        </dev:remarks>
      </command:example>
    </command:examples>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/Admin/Get-TfsInstallationPath</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Copy-TfsIteration -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="WorkItem.AreasIterations">
    <command:details>
      <command:name>Copy-TfsIteration</command:name>
      <command:verb>Copy</command:verb>
      <command:noun>TfsIteration</command:noun>
      <maml:description>
        <maml:para>Copies one or more Iterations recursively </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Copy-TfsIteration</maml:name>
        <!-- Parameter: Node -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Path,Iteration">
          <maml:name>Node</maml:name>
          <maml:description>
            <maml:para>Specifies the name, URI or path of an Iteration. Wildcards are supported. When  omitted, all Iterations in the given Team Project are returned.nnTo supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional.nnWhen supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Destination -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="1" aliases="CopyTo">
          <maml:name>Destination</maml:name>
          <maml:description>
            <maml:para>Specifies the name and/or path of the destination parent node. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: DestinationProject -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>DestinationProject</maml:name>
          <maml:description>
            <maml:para>Specifies the name and/or path of the destination team project. When omitted, copies the iteration to the same team project. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Force -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Force</maml:name>
          <maml:description>
            <maml:para>Allows the cmdlet to create destination parent node(s) if they're missing. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Recurse -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Recurse</maml:name>
          <maml:description>
            <maml:para>Copies nodes recursively. When omitted, sub-nodes are not copied. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Node -->
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Path,Iteration">
        <maml:name>Node</maml:name>
        <maml:description>
          <maml:para>Specifies the name, URI or path of an Iteration. Wildcards are supported. When  omitted, all Iterations in the given Team Project are returned.nnTo supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional.nnWhen supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Path,Iteration">
        <maml:name>Path</maml:name>
        <maml:description>
          <maml:para>Specifies the name, URI or path of an Iteration. Wildcards are supported. When  omitted, all Iterations in the given Team Project are returned.nnTo supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional.nnWhen supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
          <maml:para>This is an alias of the Node parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Path,Iteration">
        <maml:name>Iteration</maml:name>
        <maml:description>
          <maml:para>Specifies the name, URI or path of an Iteration. Wildcards are supported. When  omitted, all Iterations in the given Team Project are returned.nnTo supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional.nnWhen supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
          <maml:para>This is an alias of the Node parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Destination -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="1" aliases="CopyTo">
        <maml:name>Destination</maml:name>
        <maml:description>
          <maml:para>Specifies the name and/or path of the destination parent node. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="true" globbing="false" pipelineInput="false" position="1" aliases="CopyTo">
        <maml:name>CopyTo</maml:name>
        <maml:description>
          <maml:para>Specifies the name and/or path of the destination parent node. </maml:para>
          <maml:para>This is an alias of the Destination parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: DestinationProject -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>DestinationProject</maml:name>
        <maml:description>
          <maml:para>Specifies the name and/or path of the destination team project. When omitted, copies the iteration to the same team project. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Force -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Force</maml:name>
        <maml:description>
          <maml:para>Allows the cmdlet to create destination parent node(s) if they're missing. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Recurse -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Recurse</maml:name>
        <maml:description>
          <maml:para>Copies nodes recursively. When omitted, sub-nodes are not copied. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Organization</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          <maml:para>This is an alias of the Collection parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Server -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Server</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the name, URI or path of an Iteration. Wildcards are supported. When  omitted, all Iterations in the given Team Project are returned.nnTo supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional.nnWhen supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: ClassificationNode -->
      <command:returnValue>
        <dev:type>
          <maml:name>TfsCmdlets.Models.ClassificationNode</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/WorkItem/AreasIterations/Copy-TfsIteration</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Get-TfsIteration -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="WorkItem.AreasIterations">
    <command:details>
      <command:name>Get-TfsIteration</command:name>
      <command:verb>Get</command:verb>
      <command:noun>TfsIteration</command:noun>
      <maml:description>
        <maml:para>Gets one or more Iterations from a given Team Project. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Get-TfsIteration</maml:name>
        <!-- Parameter: Node -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Path,Iteration">
          <maml:name>Node</maml:name>
          <maml:description>
            <maml:para>Specifies the name, URI or path of an Iteration. Wildcards are supported. When  omitted, all Iterations in the given Team Project are returned.nnTo supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional.nnWhen supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>\**</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Node -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Path,Iteration">
        <maml:name>Node</maml:name>
        <maml:description>
          <maml:para>Specifies the name, URI or path of an Iteration. Wildcards are supported. When  omitted, all Iterations in the given Team Project are returned.nnTo supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional.nnWhen supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>\**</dev:defaultValue>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Path,Iteration">
        <maml:name>Path</maml:name>
        <maml:description>
          <maml:para>Specifies the name, URI or path of an Iteration. Wildcards are supported. When  omitted, all Iterations in the given Team Project are returned.nnTo supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional.nnWhen supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
          <maml:para>This is an alias of the Node parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>\**</dev:defaultValue>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Path,Iteration">
        <maml:name>Iteration</maml:name>
        <maml:description>
          <maml:para>Specifies the name, URI or path of an Iteration. Wildcards are supported. When  omitted, all Iterations in the given Team Project are returned.nnTo supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional.nnWhen supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
          <maml:para>This is an alias of the Node parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>\**</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Organization</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          <maml:para>This is an alias of the Collection parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Server -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Server</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: ClassificationNode -->
      <command:returnValue>
        <dev:type>
          <maml:name>TfsCmdlets.Models.ClassificationNode</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <command:examples>
      <command:example>
        <maml:title>----------  EXAMPLE 1  ----------</maml:title>
        <dev:code>PS&gt; Get-TfsIteration</dev:code>
        <dev:remarks>
          <maml:para>Returns all iterations in the currently connected Team Project (as defined by a previous call to Connect-TfsTeamProject)</maml:para>
          <maml:para></maml:para>
        </dev:remarks>
      </command:example>
      <command:example>
        <maml:title>----------  EXAMPLE 2  ----------</maml:title>
        <dev:code>PS&gt; Get-TfsIteration '\**\Support' -Project Tailspin</dev:code>
        <dev:remarks>
          <maml:para>Performs a recursive search and returns all iterations named 'Support' that may exist in a team project called Tailspin</maml:para>
          <maml:para></maml:para>
        </dev:remarks>
      </command:example>
    </command:examples>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/WorkItem/AreasIterations/Get-TfsIteration</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Move-TfsIteration -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="WorkItem.AreasIterations">
    <command:details>
      <command:name>Move-TfsIteration</command:name>
      <command:verb>Move</command:verb>
      <command:noun>TfsIteration</command:noun>
      <maml:description>
        <maml:para>Moves one or more Iterations to a new parent node </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Move-TfsIteration</maml:name>
        <!-- Parameter: Node -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Path,Iteration">
          <maml:name>Node</maml:name>
          <maml:description>
            <maml:para>Specifies the name, URI or path of an Iteration. Wildcards are supported. When  omitted, all Iterations in the given Team Project are returned.nnTo supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional.nnWhen supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>\**</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Destination -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="1" aliases="MoveTo">
          <maml:name>Destination</maml:name>
          <maml:description>
            <maml:para>Specifies the name and/or path of the destination parent node. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Force -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Force</maml:name>
          <maml:description>
            <maml:para>Allows the cmdlet to create destination parent node(s) if they're missing. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Node -->
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Path,Iteration">
        <maml:name>Node</maml:name>
        <maml:description>
          <maml:para>Specifies the name, URI or path of an Iteration. Wildcards are supported. When  omitted, all Iterations in the given Team Project are returned.nnTo supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional.nnWhen supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>\**</dev:defaultValue>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Path,Iteration">
        <maml:name>Path</maml:name>
        <maml:description>
          <maml:para>Specifies the name, URI or path of an Iteration. Wildcards are supported. When  omitted, all Iterations in the given Team Project are returned.nnTo supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional.nnWhen supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
          <maml:para>This is an alias of the Node parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>\**</dev:defaultValue>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Path,Iteration">
        <maml:name>Iteration</maml:name>
        <maml:description>
          <maml:para>Specifies the name, URI or path of an Iteration. Wildcards are supported. When  omitted, all Iterations in the given Team Project are returned.nnTo supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional.nnWhen supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
          <maml:para>This is an alias of the Node parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>\**</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Destination -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="1" aliases="MoveTo">
        <maml:name>Destination</maml:name>
        <maml:description>
          <maml:para>Specifies the name and/or path of the destination parent node. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="true" globbing="false" pipelineInput="false" position="1" aliases="MoveTo">
        <maml:name>MoveTo</maml:name>
        <maml:description>
          <maml:para>Specifies the name and/or path of the destination parent node. </maml:para>
          <maml:para>This is an alias of the Destination parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Force -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Force</maml:name>
        <maml:description>
          <maml:para>Allows the cmdlet to create destination parent node(s) if they're missing. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Organization</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          <maml:para>This is an alias of the Collection parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Server -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Server</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the name, URI or path of an Iteration. Wildcards are supported. When  omitted, all Iterations in the given Team Project are returned.nnTo supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional.nnWhen supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: ClassificationNode -->
      <command:returnValue>
        <dev:type>
          <maml:name>TfsCmdlets.Models.ClassificationNode</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/WorkItem/AreasIterations/Move-TfsIteration</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: New-TfsIteration -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="WorkItem.AreasIterations">
    <command:details>
      <command:name>New-TfsIteration</command:name>
      <command:verb>New</command:verb>
      <command:noun>TfsIteration</command:noun>
      <maml:description>
        <maml:para>Creates a new Iteration in the given Team Project. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>New-TfsIteration</maml:name>
        <!-- Parameter: Node -->
        <command:parameter required="true" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Iteration,Path">
          <maml:name>Node</maml:name>
          <maml:description>
            <maml:para>Specifies the path of the new Iteration. When supplying a path, use a backslash ("\\") between the path segments. Leading and trailing backslashes are optional. The last segment in the path will be the iteration name. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: FinishDate -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>FinishDate</maml:name>
          <maml:description>
            <maml:para>Sets the finish date of the iteration. </maml:para>
          </maml:description>
          <command:parameterValue required="true">DateTime</command:parameterValue>
          <dev:type>
            <maml:name>System.DateTime</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Force -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Force</maml:name>
          <maml:description>
            <maml:para>Allows the cmdlet to create parent nodes if they're missing. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Passthru -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Passthru</maml:name>
          <maml:description>
            <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: StartDate -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>StartDate</maml:name>
          <maml:description>
            <maml:para>Specifies the start date of the iteration. </maml:para>
          </maml:description>
          <command:parameterValue required="true">DateTime</command:parameterValue>
          <dev:type>
            <maml:name>System.DateTime</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Node -->
      <command:parameter required="true" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Iteration,Path">
        <maml:name>Node</maml:name>
        <maml:description>
          <maml:para>Specifies the path of the new Iteration. When supplying a path, use a backslash ("\\") between the path segments. Leading and trailing backslashes are optional. The last segment in the path will be the iteration name. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="true" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Iteration,Path">
        <maml:name>Iteration</maml:name>
        <maml:description>
          <maml:para>Specifies the path of the new Iteration. When supplying a path, use a backslash ("\\") between the path segments. Leading and trailing backslashes are optional. The last segment in the path will be the iteration name. </maml:para>
          <maml:para>This is an alias of the Node parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="true" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Iteration,Path">
        <maml:name>Path</maml:name>
        <maml:description>
          <maml:para>Specifies the path of the new Iteration. When supplying a path, use a backslash ("\\") between the path segments. Leading and trailing backslashes are optional. The last segment in the path will be the iteration name. </maml:para>
          <maml:para>This is an alias of the Node parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: StartDate -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>StartDate</maml:name>
        <maml:description>
          <maml:para>Specifies the start date of the iteration. </maml:para>
        </maml:description>
        <command:parameterValue required="true">DateTime</command:parameterValue>
        <dev:type>
          <maml:name>System.DateTime</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: FinishDate -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>FinishDate</maml:name>
        <maml:description>
          <maml:para>Sets the finish date of the iteration. </maml:para>
        </maml:description>
        <command:parameterValue required="true">DateTime</command:parameterValue>
        <dev:type>
          <maml:name>System.DateTime</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Force -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Force</maml:name>
        <maml:description>
          <maml:para>Allows the cmdlet to create parent nodes if they're missing. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Passthru -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Passthru</maml:name>
        <maml:description>
          <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Organization</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          <maml:para>This is an alias of the Collection parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Server -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Server</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the path of the new Iteration. When supplying a path, use a backslash ("\\") between the path segments. Leading and trailing backslashes are optional. The last segment in the path will be the iteration name. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: ClassificationNode -->
      <command:returnValue>
        <dev:type>
          <maml:name>TfsCmdlets.Models.ClassificationNode</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/WorkItem/AreasIterations/New-TfsIteration</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Remove-TfsIteration -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="WorkItem.AreasIterations">
    <command:details>
      <command:name>Remove-TfsIteration</command:name>
      <command:verb>Remove</command:verb>
      <command:noun>TfsIteration</command:noun>
      <maml:description>
        <maml:para>Deletes one or more iterations from a given Team Project. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Remove-TfsIteration</maml:name>
        <!-- Parameter: Node -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Path,Iteration">
          <maml:name>Node</maml:name>
          <maml:description>
            <maml:para>Specifies the name, URI or path of an Iteration. Wildcards are supported. When  omitted, all Iterations in the given Team Project are returned.nnTo supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional.nnWhen supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: MoveTo -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="1" aliases="NewPath">
          <maml:name>MoveTo</maml:name>
          <maml:description>
            <maml:para>Specifies the new parent node for the work items currently assigned to the node being deleted, if any. When omitted, defaults to the root node (the "\" node, at the team project level). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>\</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Recurse -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Recurse</maml:name>
          <maml:description>
            <maml:para>Removes node(s) recursively. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Node -->
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Path,Iteration">
        <maml:name>Node</maml:name>
        <maml:description>
          <maml:para>Specifies the name, URI or path of an Iteration. Wildcards are supported. When  omitted, all Iterations in the given Team Project are returned.nnTo supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional.nnWhen supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Path,Iteration">
        <maml:name>Path</maml:name>
        <maml:description>
          <maml:para>Specifies the name, URI or path of an Iteration. Wildcards are supported. When  omitted, all Iterations in the given Team Project are returned.nnTo supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional.nnWhen supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
          <maml:para>This is an alias of the Node parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Path,Iteration">
        <maml:name>Iteration</maml:name>
        <maml:description>
          <maml:para>Specifies the name, URI or path of an Iteration. Wildcards are supported. When  omitted, all Iterations in the given Team Project are returned.nnTo supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional.nnWhen supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
          <maml:para>This is an alias of the Node parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: MoveTo -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="1" aliases="NewPath">
        <maml:name>MoveTo</maml:name>
        <maml:description>
          <maml:para>Specifies the new parent node for the work items currently assigned to the node being deleted, if any. When omitted, defaults to the root node (the "\" node, at the team project level). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>\</dev:defaultValue>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="1" aliases="NewPath">
        <maml:name>NewPath</maml:name>
        <maml:description>
          <maml:para>Specifies the new parent node for the work items currently assigned to the node being deleted, if any. When omitted, defaults to the root node (the "\" node, at the team project level). </maml:para>
          <maml:para>This is an alias of the MoveTo parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>\</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Recurse -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Recurse</maml:name>
        <maml:description>
          <maml:para>Removes node(s) recursively. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Organization</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          <maml:para>This is an alias of the Collection parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Server -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Server</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the name, URI or path of an Iteration. Wildcards are supported. When  omitted, all Iterations in the given Team Project are returned.nnTo supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional.nnWhen supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: ClassificationNode -->
      <command:returnValue>
        <dev:type>
          <maml:name>TfsCmdlets.Models.ClassificationNode</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/WorkItem/AreasIterations/Remove-TfsIteration</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Rename-TfsIteration -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="WorkItem.AreasIterations">
    <command:details>
      <command:name>Rename-TfsIteration</command:name>
      <command:verb>Rename</command:verb>
      <command:noun>TfsIteration</command:noun>
      <maml:description>
        <maml:para>Renames an iteration path. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Rename-TfsIteration</maml:name>
        <!-- Parameter: Node -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Path,Iteration">
          <maml:name>Node</maml:name>
          <maml:description>
            <maml:para>Specifies the name, URI or path of an Iteration. Wildcards are supported. When  omitted, all Iterations in the given Team Project are returned.nnTo supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional.nnWhen supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: NewName -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="1">
          <maml:name>NewName</maml:name>
          <maml:description>
            <maml:para>Specifies the new name of the item. Enter only a name - i.e., for items that support paths, do not enter a path and name. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Node -->
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Path,Iteration">
        <maml:name>Node</maml:name>
        <maml:description>
          <maml:para>Specifies the name, URI or path of an Iteration. Wildcards are supported. When  omitted, all Iterations in the given Team Project are returned.nnTo supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional.nnWhen supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Path,Iteration">
        <maml:name>Path</maml:name>
        <maml:description>
          <maml:para>Specifies the name, URI or path of an Iteration. Wildcards are supported. When  omitted, all Iterations in the given Team Project are returned.nnTo supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional.nnWhen supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
          <maml:para>This is an alias of the Node parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Path,Iteration">
        <maml:name>Iteration</maml:name>
        <maml:description>
          <maml:para>Specifies the name, URI or path of an Iteration. Wildcards are supported. When  omitted, all Iterations in the given Team Project are returned.nnTo supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional.nnWhen supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
          <maml:para>This is an alias of the Node parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: NewName -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="1">
        <maml:name>NewName</maml:name>
        <maml:description>
          <maml:para>Specifies the new name of the item. Enter only a name - i.e., for items that support paths, do not enter a path and name. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Organization</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          <maml:para>This is an alias of the Collection parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Server -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Server</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the name, URI or path of an Iteration. Wildcards are supported. When  omitted, all Iterations in the given Team Project are returned.nnTo supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional.nnWhen supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: ClassificationNode -->
      <command:returnValue>
        <dev:type>
          <maml:name>TfsCmdlets.Models.ClassificationNode</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/WorkItem/AreasIterations/Rename-TfsIteration</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Set-TfsIteration -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="WorkItem.AreasIterations">
    <command:details>
      <command:name>Set-TfsIteration</command:name>
      <command:verb>Set</command:verb>
      <command:noun>TfsIteration</command:noun>
      <maml:description>
        <maml:para>Modifies the dates of an iteration. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: Set by finish date -->
      <command:syntaxItem tfscmdlets:parameterSet="Set by finish date">
        <maml:name>Set-TfsIteration</maml:name>
        <!-- Parameter: Node -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Path,Iteration">
          <maml:name>Node</maml:name>
          <maml:description>
            <maml:para>Specifies the name, URI or path of an Iteration. Wildcards are supported. When  omitted, all Iterations in the given Team Project are returned.nnTo supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional.nnWhen supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: FinishDate -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
          <maml:name>FinishDate</maml:name>
          <maml:description>
            <maml:para>Sets the finish date of the iteration. To clear the finish date, set it to $null. Note that when clearing a date, both must be cleared at the same time (i.e. setting both StartDate and FinishDate to $null). </maml:para>
          </maml:description>
          <command:parameterValue required="true">DateTime</command:parameterValue>
          <dev:type>
            <maml:name>System.DateTime</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: StartDate -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
          <maml:name>StartDate</maml:name>
          <maml:description>
            <maml:para>Specifies the start date of the iteration. To clear the start date, set it to $null. Note that when clearing a date, both must be cleared at the same time (i.e. setting both StartDate and FinishDate to $null). </maml:para>
          </maml:description>
          <command:parameterValue required="true">DateTime</command:parameterValue>
          <dev:type>
            <maml:name>System.DateTime</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Passthru -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Passthru</maml:name>
          <maml:description>
            <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
      <!-- Parameter Set: Set by iteration length -->
      <command:syntaxItem tfscmdlets:parameterSet="Set by iteration length">
        <maml:name>Set-TfsIteration</maml:name>
        <!-- Parameter: Node -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Path,Iteration">
          <maml:name>Node</maml:name>
          <maml:description>
            <maml:para>Specifies the name, URI or path of an Iteration. Wildcards are supported. When  omitted, all Iterations in the given Team Project are returned.nnTo supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional.nnWhen supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Length -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
          <maml:name>Length</maml:name>
          <maml:description>
            <maml:para>Sets the length (in days) of the iteration. To clear the finish date, set it to 0. Note that when clearing a date, both must be cleared at the same time (i.e. setting both StartDate to $null and Length to 0). </maml:para>
          </maml:description>
          <command:parameterValue required="true">int</command:parameterValue>
          <dev:type>
            <maml:name>System.Int32</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>0</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: StartDate -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
          <maml:name>StartDate</maml:name>
          <maml:description>
            <maml:para>Specifies the start date of the iteration. To clear the start date, set it to $null. Note that when clearing a date, both must be cleared at the same time (i.e. setting both StartDate and FinishDate to $null). </maml:para>
          </maml:description>
          <command:parameterValue required="true">DateTime</command:parameterValue>
          <dev:type>
            <maml:name>System.DateTime</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Passthru -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Passthru</maml:name>
          <maml:description>
            <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Node -->
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Path,Iteration">
        <maml:name>Node</maml:name>
        <maml:description>
          <maml:para>Specifies the name, URI or path of an Iteration. Wildcards are supported. When  omitted, all Iterations in the given Team Project are returned.nnTo supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional.nnWhen supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Path,Iteration">
        <maml:name>Path</maml:name>
        <maml:description>
          <maml:para>Specifies the name, URI or path of an Iteration. Wildcards are supported. When  omitted, all Iterations in the given Team Project are returned.nnTo supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional.nnWhen supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
          <maml:para>This is an alias of the Node parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Path,Iteration">
        <maml:name>Iteration</maml:name>
        <maml:description>
          <maml:para>Specifies the name, URI or path of an Iteration. Wildcards are supported. When  omitted, all Iterations in the given Team Project are returned.nnTo supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional.nnWhen supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
          <maml:para>This is an alias of the Node parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: StartDate -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
        <maml:name>StartDate</maml:name>
        <maml:description>
          <maml:para>Specifies the start date of the iteration. To clear the start date, set it to $null. Note that when clearing a date, both must be cleared at the same time (i.e. setting both StartDate and FinishDate to $null). </maml:para>
        </maml:description>
        <command:parameterValue required="true">DateTime</command:parameterValue>
        <dev:type>
          <maml:name>System.DateTime</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: FinishDate -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
        <maml:name>FinishDate</maml:name>
        <maml:description>
          <maml:para>Sets the finish date of the iteration. To clear the finish date, set it to $null. Note that when clearing a date, both must be cleared at the same time (i.e. setting both StartDate and FinishDate to $null). </maml:para>
        </maml:description>
        <command:parameterValue required="true">DateTime</command:parameterValue>
        <dev:type>
          <maml:name>System.DateTime</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Length -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
        <maml:name>Length</maml:name>
        <maml:description>
          <maml:para>Sets the length (in days) of the iteration. To clear the finish date, set it to 0. Note that when clearing a date, both must be cleared at the same time (i.e. setting both StartDate to $null and Length to 0). </maml:para>
        </maml:description>
        <command:parameterValue required="true">int</command:parameterValue>
        <dev:type>
          <maml:name>System.Int32</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>0</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Passthru -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Passthru</maml:name>
        <maml:description>
          <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Organization</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          <maml:para>This is an alias of the Collection parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Server -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Server</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the name, URI or path of an Iteration. Wildcards are supported. When  omitted, all Iterations in the given Team Project are returned.nnTo supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional.nnWhen supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: ClassificationNode -->
      <command:returnValue>
        <dev:type>
          <maml:name>TfsCmdlets.Models.ClassificationNode</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/WorkItem/AreasIterations/Set-TfsIteration</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Test-TfsIteration -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="WorkItem.AreasIterations">
    <command:details>
      <command:name>Test-TfsIteration</command:name>
      <command:verb>Test</command:verb>
      <command:noun>TfsIteration</command:noun>
      <maml:description>
        <maml:para>Determines whether the specified iteration exist. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Test-TfsIteration</maml:name>
        <!-- Parameter: Node -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Iteration,Path">
          <maml:name>Node</maml:name>
          <maml:description>
            <maml:para>Specifies the name, URI or path of a Work Area. Wildcards are supported. When omitted, all Areas in the given Team Project are returned. To supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional. When supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Node -->
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Iteration,Path">
        <maml:name>Node</maml:name>
        <maml:description>
          <maml:para>Specifies the name, URI or path of a Work Area. Wildcards are supported. When omitted, all Areas in the given Team Project are returned. To supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional. When supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Iteration,Path">
        <maml:name>Iteration</maml:name>
        <maml:description>
          <maml:para>Specifies the name, URI or path of a Work Area. Wildcards are supported. When omitted, all Areas in the given Team Project are returned. To supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional. When supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
          <maml:para>This is an alias of the Node parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Iteration,Path">
        <maml:name>Path</maml:name>
        <maml:description>
          <maml:para>Specifies the name, URI or path of a Work Area. Wildcards are supported. When omitted, all Areas in the given Team Project are returned. To supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional. When supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
          <maml:para>This is an alias of the Node parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Organization</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          <maml:para>This is an alias of the Collection parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Server -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Server</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the name, URI or path of a Work Area. Wildcards are supported. When omitted, all Areas in the given Team Project are returned. To supply a path, use a backslash ('\') between the path segments. Leading and trailing backslashes are optional. When supplying a URI, use URIs in the form of 'vstfs:///Classification/Node/{GUID}' (where {GUID} is the unique identifier of the given node). </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: Boolean -->
      <command:returnValue>
        <dev:type>
          <maml:name>System.Boolean</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/WorkItem/AreasIterations/Test-TfsIteration</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Connect-TfsOrganization -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Organization">
    <command:details>
      <command:name>Connect-TfsOrganization</command:name>
      <command:verb>Connect</command:verb>
      <command:noun>TfsOrganization</command:noun>
      <maml:description>
        <maml:para>Connects to an Azure DevOps organization or a TFS Team Project Collection. </maml:para>
      </maml:description>
    </command:details>
    <maml:description>
      <maml:para>The Connect-TfsOrganization cmdlet connects to an Azure DevOps organization or a TFS Team Project Collection. </maml:para>
      <maml:para>That connection can be later reused by other TfsCmdlets commands until it's closed by a call to Disconnect-TfsOrganization. </maml:para>
    </maml:description>
    <command:syntax>
      <!-- Parameter Set: Cached credentials -->
      <command:syntaxItem tfscmdlets:parameterSet="Cached credentials">
        <maml:name>Connect-TfsOrganization</maml:name>
        <!-- Parameter: Organization -->
        <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Collection">
          <maml:name>Organization</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Azure DevOps Organization or Team Project Collection to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organization by simply providing its name instead of the full URL. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Cached -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
          <maml:name>Cached</maml:name>
          <maml:description>
            <maml:para>Specifies that cached (default) credentials should be used when possible/available. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Passthru -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Passthru</maml:name>
          <maml:description>
            <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
      <!-- Parameter Set: User name and password -->
      <command:syntaxItem tfscmdlets:parameterSet="User name and password">
        <maml:name>Connect-TfsOrganization</maml:name>
        <!-- Parameter: Organization -->
        <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Collection">
          <maml:name>Organization</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Azure DevOps Organization or Team Project Collection to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organization by simply providing its name instead of the full URL. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Password -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
          <maml:name>Password</maml:name>
          <maml:description>
            <maml:para>Specifies a password for authentication modes (such as Basic) that support username/password-based credentials. Must be used in conjunction with the -UserName argument </maml:para>
          </maml:description>
          <command:parameterValue required="true">SecureString</command:parameterValue>
          <dev:type>
            <maml:name>System.Security.SecureString</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: UserName -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
          <maml:name>UserName</maml:name>
          <maml:description>
            <maml:para>Specifies a user name for authentication modes (such as Basic) that support username/password-based credentials. Must be used in conjunction with the -Password argument </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Passthru -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Passthru</maml:name>
          <maml:description>
            <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
      <!-- Parameter Set: Credential object -->
      <command:syntaxItem tfscmdlets:parameterSet="Credential object">
        <maml:name>Connect-TfsOrganization</maml:name>
        <!-- Parameter: Organization -->
        <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Collection">
          <maml:name>Organization</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Azure DevOps Organization or Team Project Collection to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organization by simply providing its name instead of the full URL. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Credential -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
          <maml:name>Credential</maml:name>
          <maml:description>
            <maml:para>Specifies a user account that has permission to perform this action. To provide a user name and password, a Personal Access Token, and/or to open a input dialog to enter your credentials, call Get-TfsCredential with the appropriate arguments and pass its return to this argument. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Passthru -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Passthru</maml:name>
          <maml:description>
            <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
      <!-- Parameter Set: Personal Access Token -->
      <command:syntaxItem tfscmdlets:parameterSet="Personal Access Token">
        <maml:name>Connect-TfsOrganization</maml:name>
        <!-- Parameter: Organization -->
        <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Collection">
          <maml:name>Organization</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Azure DevOps Organization or Team Project Collection to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organization by simply providing its name instead of the full URL. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: PersonalAccessToken -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="named" aliases="Pat">
          <maml:name>PersonalAccessToken</maml:name>
          <maml:description>
            <maml:para>Specifies a personal access token, used as an alternate credential, to authenticate to Azure DevOps </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Passthru -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Passthru</maml:name>
          <maml:description>
            <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
      <!-- Parameter Set: Prompt for credential -->
      <command:syntaxItem tfscmdlets:parameterSet="Prompt for credential">
        <maml:name>Connect-TfsOrganization</maml:name>
        <!-- Parameter: Organization -->
        <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Collection">
          <maml:name>Organization</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Azure DevOps Organization or Team Project Collection to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organization by simply providing its name instead of the full URL. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Interactive -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Interactive</maml:name>
          <maml:description>
            <maml:para>Prompts for user credentials. Can be used for any Team Foundation Server or Azure DevOps account - the proper login dialog is automatically selected. Should only be used in an interactive PowerShell session (i.e., a PowerShell terminal window), never in an unattended script (such as those executed during an automated build). Currently it is only supported in Windows PowerShell. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Passthru -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Passthru</maml:name>
          <maml:description>
            <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Organization -->
      <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Collection">
        <maml:name>Organization</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Azure DevOps Organization or Team Project Collection to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organization by simply providing its name instead of the full URL. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Collection">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Azure DevOps Organization or Team Project Collection to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organization by simply providing its name instead of the full URL. </maml:para>
          <maml:para>This is an alias of the Organization parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Passthru -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Passthru</maml:name>
        <maml:description>
          <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Server -->
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
        <maml:name>Server</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Cached -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
        <maml:name>Cached</maml:name>
        <maml:description>
          <maml:para>Specifies that cached (default) credentials should be used when possible/available. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: UserName -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
        <maml:name>UserName</maml:name>
        <maml:description>
          <maml:para>Specifies a user name for authentication modes (such as Basic) that support username/password-based credentials. Must be used in conjunction with the -Password argument </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Password -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
        <maml:name>Password</maml:name>
        <maml:description>
          <maml:para>Specifies a password for authentication modes (such as Basic) that support username/password-based credentials. Must be used in conjunction with the -UserName argument </maml:para>
        </maml:description>
        <command:parameterValue required="true">SecureString</command:parameterValue>
        <dev:type>
          <maml:name>System.Security.SecureString</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Credential -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
        <maml:name>Credential</maml:name>
        <maml:description>
          <maml:para>Specifies a user account that has permission to perform this action. To provide a user name and password, a Personal Access Token, and/or to open a input dialog to enter your credentials, call Get-TfsCredential with the appropriate arguments and pass its return to this argument. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: PersonalAccessToken -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="named" aliases="Pat">
        <maml:name>PersonalAccessToken</maml:name>
        <maml:description>
          <maml:para>Specifies a personal access token, used as an alternate credential, to authenticate to Azure DevOps </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="true" globbing="false" pipelineInput="false" position="named" aliases="Pat">
        <maml:name>Pat</maml:name>
        <maml:description>
          <maml:para>Specifies a personal access token, used as an alternate credential, to authenticate to Azure DevOps </maml:para>
          <maml:para>This is an alias of the PersonalAccessToken parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Interactive -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Interactive</maml:name>
        <maml:description>
          <maml:para>Prompts for user credentials. Can be used for any Team Foundation Server or Azure DevOps account - the proper login dialog is automatically selected. Should only be used in an interactive PowerShell session (i.e., a PowerShell terminal window), never in an unattended script (such as those executed during an automated build). Currently it is only supported in Windows PowerShell. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the URL to the Azure DevOps Organization or Team Project Collection to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organization by simply providing its name instead of the full URL. </maml:para>
        </maml:description>
      </command:inputType>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: VssConnection -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.VisualStudio.Services.WebApi.VssConnection</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:alertSet>
      <maml:para>Most cmdlets in the TfsCmdlets module require a Collection object to be provided via their -Collection argument in order to access a TFS instance. Those cmdlets will use the connection opened by Connect-TfsOrganization as their "default connection". </maml:para>
      <maml:para>In other words, TFS cmdlets (e.g. New-TfsWorkItem) that have a -Collection argument will use the connection provided by Connect-TfsOrganization by default. </maml:para>
    </maml:alertSet>
    <command:examples>
      <command:example>
        <maml:title>----------  EXAMPLE 1  ----------</maml:title>
        <dev:code>PS&gt; Connect-TfsOrganization -Collection http://tfs:8080/tfs/DefaultCollection</dev:code>
        <dev:remarks>
          <maml:para>Connects to a collection called "DefaultCollection" in a TF server called "tfs" using the cached credentials of the logged-on user</maml:para>
          <maml:para></maml:para>
        </dev:remarks>
      </command:example>
      <command:example>
        <maml:title>----------  EXAMPLE 2  ----------</maml:title>
        <dev:code>PS&gt; Connect-TfsOrganization -Collection http://tfs:8080/tfs/DefaultCollection -Interactive</dev:code>
        <dev:remarks>
          <maml:para>Connects to a collection called "DefaultCollection" in a Team Foundation server called "tfs", firstly prompting the user for credentials (it ignores the cached credentials for the currently logged-in user). It's equivalent to the command: `Connect-TfsOrganization -Collection http://tfs:8080/tfs/DefaultCollection -Credential (Get-TfsCredential -Interactive)`</maml:para>
          <maml:para></maml:para>
        </dev:remarks>
      </command:example>
    </command:examples>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/Organization/Connect-TfsOrganization</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Disconnect-TfsOrganization -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Organization">
    <command:details>
      <command:name>Disconnect-TfsOrganization</command:name>
      <command:verb>Disconnect</command:verb>
      <command:noun>TfsOrganization</command:noun>
      <maml:description>
        <maml:para>Disconnects from the currently connected Azure DevOps organization. </maml:para>
      </maml:description>
    </command:details>
    <maml:description>
      <maml:para>The Disconnect-TfsOrganization cmdlet removes the connection previously set by its counterpart Connect-TfsOrganization. Therefore, cmdlets relying on a "default organization/collection" as provided by "Get-TfsOrganization -Current" will no longer work after a call to this cmdlet, unless their -Collection argument is provided or a new call to Connect-TfsTeam is made. </maml:para>
    </maml:description>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Disconnect-TfsOrganization</maml:name>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters />
    <command:inputTypes />
    <command:returnValues />
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/Organization/Disconnect-TfsOrganization</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Get-TfsOrganization -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Organization">
    <command:details>
      <command:name>Get-TfsOrganization</command:name>
      <command:verb>Get</command:verb>
      <command:noun>TfsOrganization</command:noun>
      <maml:description>
        <maml:para>Gets one of more team project collections (organizations in Azure DevOps). </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: Get by organization -->
      <command:syntaxItem tfscmdlets:parameterSet="Get by organization">
        <maml:name>Get-TfsOrganization</maml:name>
        <!-- Parameter: Organization -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Collection">
          <maml:name>Organization</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
      <!-- Parameter Set: Cached credentials -->
      <command:syntaxItem tfscmdlets:parameterSet="Cached credentials">
        <maml:name>Get-TfsOrganization</maml:name>
        <!-- Parameter: Organization -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Collection">
          <maml:name>Organization</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Cached -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
          <maml:name>Cached</maml:name>
          <maml:description>
            <maml:para>Specifies that cached (default) credentials should be used when possible/available. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
      <!-- Parameter Set: User name and password -->
      <command:syntaxItem tfscmdlets:parameterSet="User name and password">
        <maml:name>Get-TfsOrganization</maml:name>
        <!-- Parameter: Organization -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Collection">
          <maml:name>Organization</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Password -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
          <maml:name>Password</maml:name>
          <maml:description>
            <maml:para>Specifies a password for authentication modes (such as Basic) that support username/password-based credentials. Must be used in conjunction with the -UserName argument </maml:para>
          </maml:description>
          <command:parameterValue required="true">SecureString</command:parameterValue>
          <dev:type>
            <maml:name>System.Security.SecureString</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: UserName -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
          <maml:name>UserName</maml:name>
          <maml:description>
            <maml:para>Specifies a user name for authentication modes (such as Basic) that support username/password-based credentials. Must be used in conjunction with the -Password argument </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
      <!-- Parameter Set: Credential object -->
      <command:syntaxItem tfscmdlets:parameterSet="Credential object">
        <maml:name>Get-TfsOrganization</maml:name>
        <!-- Parameter: Organization -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Collection">
          <maml:name>Organization</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Credential -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
          <maml:name>Credential</maml:name>
          <maml:description>
            <maml:para>Specifies a user account that has permission to perform this action. To provide a user name and password, a Personal Access Token, and/or to open a input dialog to enter your credentials, call Get-TfsCredential with the appropriate arguments and pass its return to this argument. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
      <!-- Parameter Set: Personal Access Token -->
      <command:syntaxItem tfscmdlets:parameterSet="Personal Access Token">
        <maml:name>Get-TfsOrganization</maml:name>
        <!-- Parameter: Organization -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Collection">
          <maml:name>Organization</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: PersonalAccessToken -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="named" aliases="Pat">
          <maml:name>PersonalAccessToken</maml:name>
          <maml:description>
            <maml:para>Specifies a personal access token, used as an alternate credential, to authenticate to Azure DevOps </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
      <!-- Parameter Set: Prompt for credential -->
      <command:syntaxItem tfscmdlets:parameterSet="Prompt for credential">
        <maml:name>Get-TfsOrganization</maml:name>
        <!-- Parameter: Organization -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Collection">
          <maml:name>Organization</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Interactive -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Interactive</maml:name>
          <maml:description>
            <maml:para>Prompts for user credentials. Can be used for any Team Foundation Server or Azure DevOps account - the proper login dialog is automatically selected. Should only be used in an interactive PowerShell session (i.e., a PowerShell terminal window), never in an unattended script (such as those executed during an automated build). Currently it is only supported in Windows PowerShell. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
      <!-- Parameter Set: Get current -->
      <command:syntaxItem tfscmdlets:parameterSet="Get current">
        <maml:name>Get-TfsOrganization</maml:name>
        <!-- Parameter: Current -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
          <maml:name>Current</maml:name>
          <maml:description>
            <maml:para>Returns the organization specified in the last call to Connect-TfsOrganization (i.e. the "current" organization) </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Organization -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Collection">
        <maml:name>Organization</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Collection">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          <maml:para>This is an alias of the Organization parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Current -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
        <maml:name>Current</maml:name>
        <maml:description>
          <maml:para>Returns the organization specified in the last call to Connect-TfsOrganization (i.e. the "current" organization) </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Server -->
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
        <maml:name>Server</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Cached -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
        <maml:name>Cached</maml:name>
        <maml:description>
          <maml:para>Specifies that cached (default) credentials should be used when possible/available. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: UserName -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
        <maml:name>UserName</maml:name>
        <maml:description>
          <maml:para>Specifies a user name for authentication modes (such as Basic) that support username/password-based credentials. Must be used in conjunction with the -Password argument </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Password -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
        <maml:name>Password</maml:name>
        <maml:description>
          <maml:para>Specifies a password for authentication modes (such as Basic) that support username/password-based credentials. Must be used in conjunction with the -UserName argument </maml:para>
        </maml:description>
        <command:parameterValue required="true">SecureString</command:parameterValue>
        <dev:type>
          <maml:name>System.Security.SecureString</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Credential -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
        <maml:name>Credential</maml:name>
        <maml:description>
          <maml:para>Specifies a user account that has permission to perform this action. To provide a user name and password, a Personal Access Token, and/or to open a input dialog to enter your credentials, call Get-TfsCredential with the appropriate arguments and pass its return to this argument. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: PersonalAccessToken -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="named" aliases="Pat">
        <maml:name>PersonalAccessToken</maml:name>
        <maml:description>
          <maml:para>Specifies a personal access token, used as an alternate credential, to authenticate to Azure DevOps </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="true" globbing="false" pipelineInput="false" position="named" aliases="Pat">
        <maml:name>Pat</maml:name>
        <maml:description>
          <maml:para>Specifies a personal access token, used as an alternate credential, to authenticate to Azure DevOps </maml:para>
          <maml:para>This is an alias of the PersonalAccessToken parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Interactive -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Interactive</maml:name>
        <maml:description>
          <maml:para>Prompts for user credentials. Can be used for any Team Foundation Server or Azure DevOps account - the proper login dialog is automatically selected. Should only be used in an interactive PowerShell session (i.e., a PowerShell terminal window), never in an unattended script (such as those executed during an automated build). Currently it is only supported in Windows PowerShell. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: TfsTeamProjectCollection -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.TeamFoundation.Client.TfsTeamProjectCollection</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/Organization/Get-TfsOrganization</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Export-TfsProcessTemplate -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="ProcessTemplate">
    <command:details>
      <command:name>Export-TfsProcessTemplate</command:name>
      <command:verb>Export</command:verb>
      <command:noun>TfsProcessTemplate</command:noun>
      <maml:description>
        <maml:para>Exports a XML-based process template definition to disk. </maml:para>
      </maml:description>
    </command:details>
    <maml:description>
      <maml:para>This cmdlet offers a functional replacement to the "Export Process Template" feature found in Team Explorer. All files pertaining to the specified process template (work item defininitons, reports, saved queries, process configuration and so on) are downloaded from the given Team Project Collection and saved in a local directory, preserving the directory structure required to later re-import it. This is specially handy to do small changes to a process template or to create a new process template based on an existing one. </maml:para>
    </maml:description>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Export-TfsProcessTemplate</maml:name>
        <!-- Parameter: ProcessTemplate -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name,Process">
          <maml:name>ProcessTemplate</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the process template(s) to be exported. Wildcards are supported. When omitted, all process templates in the given project collection are exported. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>*</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named" aliases="Organization">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: DestinationPath -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>DestinationPath</maml:name>
          <maml:description>
            <maml:para>Path to the target directory where the exported process template (and related files) will be saved. A folder with the process template name will be created under this path. When omitted, templates are exported in the current directory. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Force -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Force</maml:name>
          <maml:description>
            <maml:para>Allows the cmdlet to overwrite an existing destination folder. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: NewDescription -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>NewDescription</maml:name>
          <maml:description>
            <maml:para>Saves the exported process template with a new description. Useful when exporting a base template which will be used as a basis for a new process template.  When omitted, the original description is used. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: NewName -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>NewName</maml:name>
          <maml:description>
            <maml:para>Saves the exported process template with a new name. Useful when exporting a base template which will be used as a basis for a new process template. When omitted, the original name is used. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: ProcessTemplate -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name,Process">
        <maml:name>ProcessTemplate</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the process template(s) to be exported. Wildcards are supported. When omitted, all process templates in the given project collection are exported. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>*</dev:defaultValue>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name,Process">
        <maml:name>Name</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the process template(s) to be exported. Wildcards are supported. When omitted, all process templates in the given project collection are exported. </maml:para>
          <maml:para>This is an alias of the ProcessTemplate parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>*</dev:defaultValue>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name,Process">
        <maml:name>Process</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the process template(s) to be exported. Wildcards are supported. When omitted, all process templates in the given project collection are exported. </maml:para>
          <maml:para>This is an alias of the ProcessTemplate parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>*</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: DestinationPath -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>DestinationPath</maml:name>
        <maml:description>
          <maml:para>Path to the target directory where the exported process template (and related files) will be saved. A folder with the process template name will be created under this path. When omitted, templates are exported in the current directory. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: NewName -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>NewName</maml:name>
        <maml:description>
          <maml:para>Saves the exported process template with a new name. Useful when exporting a base template which will be used as a basis for a new process template. When omitted, the original name is used. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: NewDescription -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>NewDescription</maml:name>
        <maml:description>
          <maml:para>Saves the exported process template with a new description. Useful when exporting a base template which will be used as a basis for a new process template.  When omitted, the original description is used. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Force -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Force</maml:name>
        <maml:description>
          <maml:para>Allows the cmdlet to overwrite an existing destination folder. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named" aliases="Organization">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named" aliases="Organization">
        <maml:name>Organization</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          <maml:para>This is an alias of the Collection parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Server -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Server</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues />
    <command:examples>
      <command:example>
        <maml:title>----------  EXAMPLE 1  ----------</maml:title>
        <dev:code>PS&gt; Export-TfsProcessTemplate -Process "Scrum" -DestinationPath C:\PT -Collection http://vsalm:8080/tfs/DefaultCollection</dev:code>
        <dev:remarks>
          <maml:para>Exports the Scrum process template from the DefaultCollection project collection in the VSALM server, saving the template files to the C:\PT\Scrum directory in the local computer.</maml:para>
          <maml:para></maml:para>
        </dev:remarks>
      </command:example>
      <command:example>
        <maml:title>----------  EXAMPLE 2  ----------</maml:title>
        <dev:code>PS&gt; Export-TfsProcessTemplate -Process "Scrum" -DestinationPath C:\PT -Collection http://vsalm:8080/tfs/DefaultCollection -NewName "MyScrum" -NewDescription "A customized version of the Scrum process template"</dev:code>
        <dev:remarks>
          <maml:para>Exports the Scrum process template from the DefaultCollection project collection in the VSALM server, saving the template files to the C:\PT\MyScrum directory in the local computer. Notice that the process template is being renamed from Scrum to MyScrum, so that it can be later reimported as a new process template instead of overwriting the original one.</maml:para>
          <maml:para></maml:para>
        </dev:remarks>
      </command:example>
    </command:examples>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/ProcessTemplate/Export-TfsProcessTemplate</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Get-TfsProcessTemplate -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="ProcessTemplate">
    <command:details>
      <command:name>Get-TfsProcessTemplate</command:name>
      <command:verb>Get</command:verb>
      <command:noun>TfsProcessTemplate</command:noun>
      <maml:description>
        <maml:para>Gets information from one or more process templates. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: Get by name -->
      <command:syntaxItem tfscmdlets:parameterSet="Get by name">
        <maml:name>Get-TfsProcessTemplate</maml:name>
        <!-- Parameter: ProcessTemplate -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name,Process">
          <maml:name>ProcessTemplate</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the process template(s) to be returned. Wildcards are supported. When omitted, all process templates in the given project collection are returned. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>*</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named" aliases="Organization">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
      <!-- Parameter Set: Get default process -->
      <command:syntaxItem tfscmdlets:parameterSet="Get default process">
        <maml:name>Get-TfsProcessTemplate</maml:name>
        <!-- Parameter: Default -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
          <maml:name>Default</maml:name>
          <maml:description>
            <maml:para>Returns the default process template in the given orgnization / project collection. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named" aliases="Organization">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: ProcessTemplate -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name,Process">
        <maml:name>ProcessTemplate</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the process template(s) to be returned. Wildcards are supported. When omitted, all process templates in the given project collection are returned. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>*</dev:defaultValue>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name,Process">
        <maml:name>Name</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the process template(s) to be returned. Wildcards are supported. When omitted, all process templates in the given project collection are returned. </maml:para>
          <maml:para>This is an alias of the ProcessTemplate parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>*</dev:defaultValue>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name,Process">
        <maml:name>Process</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the process template(s) to be returned. Wildcards are supported. When omitted, all process templates in the given project collection are returned. </maml:para>
          <maml:para>This is an alias of the ProcessTemplate parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>*</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Default -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
        <maml:name>Default</maml:name>
        <maml:description>
          <maml:para>Returns the default process template in the given orgnization / project collection. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named" aliases="Organization">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named" aliases="Organization">
        <maml:name>Organization</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          <maml:para>This is an alias of the Collection parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Server -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Server</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: Process -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.TeamFoundation.Core.WebApi.Process</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/ProcessTemplate/Get-TfsProcessTemplate</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Import-TfsProcessTemplate -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="ProcessTemplate">
    <command:details>
      <command:name>Import-TfsProcessTemplate</command:name>
      <command:verb>Import</command:verb>
      <command:noun>TfsProcessTemplate</command:noun>
      <maml:description>
        <maml:para>Imports a process template definition from disk. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Import-TfsProcessTemplate</maml:name>
        <!-- Parameter: Path -->
        <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0">
          <maml:name>Path</maml:name>
          <maml:description>
            <maml:para>Specifies the folder containing the process template to be imported. This folder must contain the file ProcessTemplate.xml </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: State -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>State</maml:name>
          <maml:description>
            <maml:para>Specifies the state of the template after it is imported. When set to Invisible, the process template will not be listed in the server UI. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>Visible</dev:defaultValue>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Path -->
      <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0">
        <maml:name>Path</maml:name>
        <maml:description>
          <maml:para>Specifies the folder containing the process template to be imported. This folder must contain the file ProcessTemplate.xml </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: State -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>State</maml:name>
        <maml:description>
          <maml:para>Specifies the state of the template after it is imported. When set to Invisible, the process template will not be listed in the server UI. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>Visible</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Organization</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          <maml:para>This is an alias of the Collection parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Server -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Server</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the folder containing the process template to be imported. This folder must contain the file ProcessTemplate.xml </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues />
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/ProcessTemplate/Import-TfsProcessTemplate</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: New-TfsProcessTemplate -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="ProcessTemplate">
    <command:details>
      <command:name>New-TfsProcessTemplate</command:name>
      <command:verb>New</command:verb>
      <command:noun>TfsProcessTemplate</command:noun>
      <maml:description>
        <maml:para>Creates a new inherited process. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>New-TfsProcessTemplate</maml:name>
        <!-- Parameter: ProcessTemplate -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="0" aliases="Name,Process">
          <maml:name>ProcessTemplate</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the process to create. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Parent -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
          <maml:name>Parent</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the parent process from which the new process will inherit. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Description -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Description</maml:name>
          <maml:description>
            <maml:para>Specifies the description of the new process. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Force -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Force</maml:name>
          <maml:description>
            <maml:para>Allows the cmdlet to overwrite an existing process. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Passthru -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Passthru</maml:name>
          <maml:description>
            <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: ReferenceName -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>ReferenceName</maml:name>
          <maml:description>
            <maml:para>Specifies the reference name of the new process. When omitted, a random name will be automatically generated and assigned by the server. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: ProcessTemplate -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="0" aliases="Name,Process">
        <maml:name>ProcessTemplate</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the process to create. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="true" globbing="false" pipelineInput="false" position="0" aliases="Name,Process">
        <maml:name>Name</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the process to create. </maml:para>
          <maml:para>This is an alias of the ProcessTemplate parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="true" globbing="false" pipelineInput="false" position="0" aliases="Name,Process">
        <maml:name>Process</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the process to create. </maml:para>
          <maml:para>This is an alias of the ProcessTemplate parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Description -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Description</maml:name>
        <maml:description>
          <maml:para>Specifies the description of the new process. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: ReferenceName -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>ReferenceName</maml:name>
        <maml:description>
          <maml:para>Specifies the reference name of the new process. When omitted, a random name will be automatically generated and assigned by the server. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Parent -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
        <maml:name>Parent</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the parent process from which the new process will inherit. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Force -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Force</maml:name>
        <maml:description>
          <maml:para>Allows the cmdlet to overwrite an existing process. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Passthru -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Passthru</maml:name>
        <maml:description>
          <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Organization</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          <maml:para>This is an alias of the Collection parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Server -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Server</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes />
    <command:returnValues>
      <!-- OutputType: Process -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.TeamFoundation.Core.WebApi.Process</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/ProcessTemplate/New-TfsProcessTemplate</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Get-TfsRegistryValue -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Admin.Registry">
    <command:details>
      <command:name>Get-TfsRegistryValue</command:name>
      <command:verb>Get</command:verb>
      <command:noun>TfsRegistryValue</command:noun>
      <maml:description>
        <maml:para>Gets the value of a given Team Foundation Server registry entry. </maml:para>
      </maml:description>
    </command:details>
    <maml:description>
      <maml:para>The 'Get-TfsRegistry' cmdlet retrieves the value of a TFS registry entry at the given path and scope. </maml:para>
      <maml:para>Registry entries can be scoped to the server, to a collection or to a specific user. </maml:para>
    </maml:description>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Get-TfsRegistryValue</maml:name>
        <!-- Parameter: Path -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="0">
          <maml:name>Path</maml:name>
          <maml:description>
            <maml:para>Specifies the full path of the TFS Registry key </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named" aliases="Organization">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Scope -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Scope</maml:name>
          <maml:description>
            <maml:para>Specifies the scope under which to search for the key. When omitted, defaults to the Server scope. </maml:para>
            <maml:para>Possible values: User, Collection, Server</maml:para>
          </maml:description>
          <command:parameterValue required="true">RegistryScope</command:parameterValue>
          <dev:type>
            <maml:name>TfsCmdlets.RegistryScope</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>Server</dev:defaultValue>
          <command:parameterValueGroup>
            <command:parameterValue required="false" variableLength="false">User</command:parameterValue>
            <command:parameterValue required="false" variableLength="false">Collection</command:parameterValue>
            <command:parameterValue required="false" variableLength="false">Server</command:parameterValue>
          </command:parameterValueGroup>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Path -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="0">
        <maml:name>Path</maml:name>
        <maml:description>
          <maml:para>Specifies the full path of the TFS Registry key </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Scope -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Scope</maml:name>
        <maml:description>
          <maml:para>Specifies the scope under which to search for the key. When omitted, defaults to the Server scope. </maml:para>
          <maml:para>Possible values: User, Collection, Server</maml:para>
        </maml:description>
        <command:parameterValue required="true">RegistryScope</command:parameterValue>
        <dev:type>
          <maml:name>TfsCmdlets.RegistryScope</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>Server</dev:defaultValue>
        <command:parameterValueGroup>
          <command:parameterValue required="false" variableLength="false">User</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">Collection</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">Server</command:parameterValue>
        </command:parameterValueGroup>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named" aliases="Organization">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named" aliases="Organization">
        <maml:name>Organization</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          <maml:para>This is an alias of the Collection parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Server -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Server</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: Object -->
      <command:returnValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:alertSet>
      <maml:para>The registry is an internal, hierarchical database that TFS uses to store its configuration and user-level settings and preferences. </maml:para>
      <maml:para>IMPORTANT: Retrieving user-scoped values is currently not supported. </maml:para>
    </maml:alertSet>
    <command:examples>
      <command:example>
        <maml:title>----------  EXAMPLE 1  ----------</maml:title>
        <dev:code>PS&gt; Get-TfsRegistryValue -Path '/Service/Integration/Settings/EmailEnabled'</dev:code>
        <dev:remarks>
          <maml:para>Gets the current value of the 'EmailEnabled' key in the TFS Registry</maml:para>
          <maml:para></maml:para>
        </dev:remarks>
      </command:example>
    </command:examples>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/Admin/Registry/Get-TfsRegistryValue</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Set-TfsRegistryValue -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Admin.Registry">
    <command:details>
      <command:name>Set-TfsRegistryValue</command:name>
      <command:verb>Set</command:verb>
      <command:noun>TfsRegistryValue</command:noun>
      <maml:description>
        <maml:para>Sets the value of a given Team Foundation Server registry entry. </maml:para>
      </maml:description>
    </command:details>
    <maml:description>
      <maml:para>The 'Set-TfsRegistry' cmdlet changes the value of a TFS registry key to the value specified in the command. </maml:para>
    </maml:description>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Set-TfsRegistryValue</maml:name>
        <!-- Parameter: Path -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="0">
          <maml:name>Path</maml:name>
          <maml:description>
            <maml:para>Specifies the full path of the TFS Registry key </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Value -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="1">
          <maml:name>Value</maml:name>
          <maml:description>
            <maml:para>Specifies the new value of the Registry key. To remove an existing value, set it to $null </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Passthru -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Passthru</maml:name>
          <maml:description>
            <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Scope -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Scope</maml:name>
          <maml:description>
            <maml:para>Specifies the scope under which to search for the key. When omitted, defaults to the Server scope. </maml:para>
            <maml:para>Possible values: User, Collection, Server</maml:para>
          </maml:description>
          <command:parameterValue required="true">RegistryScope</command:parameterValue>
          <dev:type>
            <maml:name>TfsCmdlets.RegistryScope</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>Server</dev:defaultValue>
          <command:parameterValueGroup>
            <command:parameterValue required="false" variableLength="false">User</command:parameterValue>
            <command:parameterValue required="false" variableLength="false">Collection</command:parameterValue>
            <command:parameterValue required="false" variableLength="false">Server</command:parameterValue>
          </command:parameterValueGroup>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Path -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="0">
        <maml:name>Path</maml:name>
        <maml:description>
          <maml:para>Specifies the full path of the TFS Registry key </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Value -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="1">
        <maml:name>Value</maml:name>
        <maml:description>
          <maml:para>Specifies the new value of the Registry key. To remove an existing value, set it to $null </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Scope -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Scope</maml:name>
        <maml:description>
          <maml:para>Specifies the scope under which to search for the key. When omitted, defaults to the Server scope. </maml:para>
          <maml:para>Possible values: User, Collection, Server</maml:para>
        </maml:description>
        <command:parameterValue required="true">RegistryScope</command:parameterValue>
        <dev:type>
          <maml:name>TfsCmdlets.RegistryScope</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>Server</dev:defaultValue>
        <command:parameterValueGroup>
          <command:parameterValue required="false" variableLength="false">User</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">Collection</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">Server</command:parameterValue>
        </command:parameterValueGroup>
      </command:parameter>
      <!-- Parameter: Passthru -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Passthru</maml:name>
        <maml:description>
          <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Organization</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          <maml:para>This is an alias of the Collection parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Server -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Server</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes />
    <command:returnValues>
      <!-- OutputType: Object -->
      <command:returnValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:alertSet>
      <maml:para>The registry is an internal, hierarchical database that TFS uses to store its configuration and user-level settings and preferences. </maml:para>
      <maml:para>IMPORTANT: Retrieving user-scoped values is currently not supported. </maml:para>
    </maml:alertSet>
    <command:examples>
      <command:example>
        <maml:title>----------  EXAMPLE 1  ----------</maml:title>
        <dev:code>PS&gt; Get-TfsRegistryValue -Path '/Service/Integration/Settings/EmailEnabled'</dev:code>
        <dev:remarks>
          <maml:para>Gets the current value of the 'EmailEnabled' key in the TFS Registry</maml:para>
          <maml:para></maml:para>
        </dev:remarks>
      </command:example>
    </command:examples>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/Admin/Registry/Set-TfsRegistryValue</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Get-TfsReleaseDefinition -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Pipeline.ReleaseManagement">
    <command:details>
      <command:name>Get-TfsReleaseDefinition</command:name>
      <command:verb>Get</command:verb>
      <command:noun>TfsReleaseDefinition</command:noun>
      <maml:description>
        <maml:para>Gets information from one or more release definitions in a team project. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Get-TfsReleaseDefinition</maml:name>
        <!-- Parameter: Definition -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name">
          <maml:name>Definition</maml:name>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>*</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Definition -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name">
        <maml:name>Definition</maml:name>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>*</dev:defaultValue>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name">
        <maml:name>Name</maml:name>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>*</dev:defaultValue>
        <maml:description>
          <maml:para>This is an alias of the Definition parameter.</maml:para>
        </maml:description>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Organization</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          <maml:para>This is an alias of the Collection parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Server -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Server</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: ReleaseDefinition -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.VisualStudio.Services.ReleaseManagement.WebApi.ReleaseDefinition</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/Pipeline/ReleaseManagement/Get-TfsReleaseDefinition</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Get-TfsReleaseDefinitionFolder -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Pipeline.ReleaseManagement">
    <command:details>
      <command:name>Get-TfsReleaseDefinitionFolder</command:name>
      <command:verb>Get</command:verb>
      <command:noun>TfsReleaseDefinitionFolder</command:noun>
      <maml:description>
        <maml:para>Gets one or more Release/pipeline definition folders in a team project. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Get-TfsReleaseDefinitionFolder</maml:name>
        <!-- Parameter: Folder -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Path">
          <maml:name>Folder</maml:name>
          <maml:description>
            <maml:para>Specifies the folder path. Wildcards are supported. When omitted, all Release/pipeline folders in the supplied team project are returned. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>**</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: QueryOrder -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>QueryOrder</maml:name>
          <maml:description>
            <maml:para>Specifies the query order. When omitted, defaults to None. </maml:para>
            <maml:para>Possible values: None, Ascending, Descending</maml:para>
          </maml:description>
          <command:parameterValue required="true">FolderPathQueryOrder</command:parameterValue>
          <dev:type>
            <maml:name>Microsoft.VisualStudio.Services.ReleaseManagement.WebApi.FolderPathQueryOrder</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>None</dev:defaultValue>
          <command:parameterValueGroup>
            <command:parameterValue required="false" variableLength="false">None</command:parameterValue>
            <command:parameterValue required="false" variableLength="false">Ascending</command:parameterValue>
            <command:parameterValue required="false" variableLength="false">Descending</command:parameterValue>
          </command:parameterValueGroup>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Folder -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Path">
        <maml:name>Folder</maml:name>
        <maml:description>
          <maml:para>Specifies the folder path. Wildcards are supported. When omitted, all Release/pipeline folders in the supplied team project are returned. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>**</dev:defaultValue>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Path">
        <maml:name>Path</maml:name>
        <maml:description>
          <maml:para>Specifies the folder path. Wildcards are supported. When omitted, all Release/pipeline folders in the supplied team project are returned. </maml:para>
          <maml:para>This is an alias of the Folder parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>**</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: QueryOrder -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>QueryOrder</maml:name>
        <maml:description>
          <maml:para>Specifies the query order. When omitted, defaults to None. </maml:para>
          <maml:para>Possible values: None, Ascending, Descending</maml:para>
        </maml:description>
        <command:parameterValue required="true">FolderPathQueryOrder</command:parameterValue>
        <dev:type>
          <maml:name>Microsoft.VisualStudio.Services.ReleaseManagement.WebApi.FolderPathQueryOrder</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>None</dev:defaultValue>
        <command:parameterValueGroup>
          <command:parameterValue required="false" variableLength="false">None</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">Ascending</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">Descending</command:parameterValue>
        </command:parameterValueGroup>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Organization</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          <maml:para>This is an alias of the Collection parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Server -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Server</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: Folder -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.VisualStudio.Services.ReleaseManagement.WebApi.Folder</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/Pipeline/ReleaseManagement/Get-TfsReleaseDefinitionFolder</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: New-TfsReleaseDefinitionFolder -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Pipeline.ReleaseManagement">
    <command:details>
      <command:name>New-TfsReleaseDefinitionFolder</command:name>
      <command:verb>New</command:verb>
      <command:noun>TfsReleaseDefinitionFolder</command:noun>
      <maml:description>
        <maml:para>Creates a new release definition folder. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>New-TfsReleaseDefinitionFolder</maml:name>
        <!-- Parameter: Folder -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Path">
          <maml:name>Folder</maml:name>
          <maml:description>
            <maml:para>Specifies the folder path. Wildcards are supported. When omitted, all Release/pipeline folders in the supplied team project are returned. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>**</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Description -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Description</maml:name>
          <maml:description>
            <maml:para>Specifies the description of the new build/pipeline folder. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Passthru -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Passthru</maml:name>
          <maml:description>
            <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Folder -->
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Path">
        <maml:name>Folder</maml:name>
        <maml:description>
          <maml:para>Specifies the folder path. Wildcards are supported. When omitted, all Release/pipeline folders in the supplied team project are returned. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>**</dev:defaultValue>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Path">
        <maml:name>Path</maml:name>
        <maml:description>
          <maml:para>Specifies the folder path. Wildcards are supported. When omitted, all Release/pipeline folders in the supplied team project are returned. </maml:para>
          <maml:para>This is an alias of the Folder parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>**</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Description -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Description</maml:name>
        <maml:description>
          <maml:para>Specifies the description of the new build/pipeline folder. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Passthru -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Passthru</maml:name>
        <maml:description>
          <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Organization</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          <maml:para>This is an alias of the Collection parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Server -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Server</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the folder path. Wildcards are supported. When omitted, all Release/pipeline folders in the supplied team project are returned. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: Folder -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.VisualStudio.Services.ReleaseManagement.WebApi.Folder</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/Pipeline/ReleaseManagement/New-TfsReleaseDefinitionFolder</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Remove-TfsReleaseDefinitionFolder -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Pipeline.ReleaseManagement">
    <command:details>
      <command:name>Remove-TfsReleaseDefinitionFolder</command:name>
      <command:verb>Remove</command:verb>
      <command:noun>TfsReleaseDefinitionFolder</command:noun>
      <maml:description>
        <maml:para>Deletes one or more release definition folders. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Remove-TfsReleaseDefinitionFolder</maml:name>
        <!-- Parameter: Folder -->
        <command:parameter required="true" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Path">
          <maml:name>Folder</maml:name>
          <maml:description>
            <maml:para>Specifies the path of the release folder to delete. Wildcards are supported. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Force -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Force</maml:name>
          <maml:description>
            <maml:para>Forces the exclusion of folders containing release definitions definitions. When omitted, only empty folders can be deleted. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Recurse -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Recurse</maml:name>
          <maml:description>
            <maml:para>Removes folders recursively. When omitted, folders with subfolders cannot be deleted. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Folder -->
      <command:parameter required="true" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Path">
        <maml:name>Folder</maml:name>
        <maml:description>
          <maml:para>Specifies the path of the release folder to delete. Wildcards are supported. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="true" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Path">
        <maml:name>Path</maml:name>
        <maml:description>
          <maml:para>Specifies the path of the release folder to delete. Wildcards are supported. </maml:para>
          <maml:para>This is an alias of the Folder parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Recurse -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Recurse</maml:name>
        <maml:description>
          <maml:para>Removes folders recursively. When omitted, folders with subfolders cannot be deleted. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Force -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Force</maml:name>
        <maml:description>
          <maml:para>Forces the exclusion of folders containing release definitions definitions. When omitted, only empty folders can be deleted. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Organization</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          <maml:para>This is an alias of the Collection parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Server -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Server</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the path of the release folder to delete. Wildcards are supported. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: Folder -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.VisualStudio.Services.ReleaseManagement.WebApi.Folder</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/Pipeline/ReleaseManagement/Remove-TfsReleaseDefinitionFolder</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Invoke-TfsRestApi -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="RestApi">
    <command:details>
      <command:name>Invoke-TfsRestApi</command:name>
      <command:verb>Invoke</command:verb>
      <command:noun>TfsRestApi</command:noun>
      <maml:description>
        <maml:para>Invoke an Azure DevOps REST API. </maml:para>
      </maml:description>
    </command:details>
    <maml:description>
      <maml:para>Invoke-TfsRestApi can automatically parse an example URL from https://docs.microsoft.com/en-us/rest/api/azure/devops/ and replace its various tokens (such as {organization}, {project} and {team}) as long as collection / project / team information are available via either the their respective arguments in this command or the corresponding Connect-Tfs* cmdlet. HTTP method and API version are also automatically extracted from the supplied example, when available. </maml:para>
    </maml:description>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Invoke-TfsRestApi</maml:name>
        <!-- Parameter: Path -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="0">
          <maml:name>Path</maml:name>
          <maml:description>
            <maml:para>Specifies the path of the REST API to call. Tipically it is the portion of the URL after the name of the collection/organization, i.e. in the URL https://dev.azure.com/{organization}/_apis/projects?api-version=5.1 the path is "/_apis/projects". </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: QueryParameters -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="1" aliases="Parameters">
          <maml:name>QueryParameters</maml:name>
          <maml:description>
            <maml:para>Specifies a hashtable with additional query parameters to send to the API endpoint. </maml:para>
          </maml:description>
          <command:parameterValue required="true">Hashtable</command:parameterValue>
          <dev:type>
            <maml:name>System.Collections.Hashtable</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: AdditionalHeaders -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>AdditionalHeaders</maml:name>
          <maml:description>
            <maml:para>Specifies a hashtable with additional HTTP headers to send to the API endpoint. </maml:para>
          </maml:description>
          <command:parameterValue required="true">Hashtable</command:parameterValue>
          <dev:type>
            <maml:name>System.Collections.Hashtable</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: ApiVersion -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>ApiVersion</maml:name>
          <maml:description>
            <maml:para>Specifies the desired API version. When omitted, defaults to "4.1". </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>4.1</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: AsTask -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>AsTask</maml:name>
          <maml:description>
            <maml:para>Returns the System.Threading.Tasks.Task object used to issue the asynchronous call to the API. The caller is responsible for finishing the asynchronous call by e.g. accessing the Result property. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Body -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Content">
          <maml:name>Body</maml:name>
          <maml:description>
            <maml:para>Specifies the request body to send to the API endpoint. Tipically contains the JSON payload required by the API. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Destination -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Destination</maml:name>
          <maml:description>
            <maml:para>Saves the API response to a file. If omitted, the response will be written to the stardard output stream. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Method -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Method</maml:name>
          <maml:description>
            <maml:para>Specifies the HTTP method to call the API endpoint. When omitted, defaults to "GET". </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>GET</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: NoAutoUnwrap -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>NoAutoUnwrap</maml:name>
          <maml:description>
            <maml:para>Prevents the automatic expansion (unwrapping) of the 'value' property in the response JSON. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Raw -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Raw</maml:name>
          <maml:description>
            <maml:para>Returns the API response as an unparsed string. If omitted, JSON responses will be parsed, converted and returned as objects (via ConvertFrom-Json). </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: RequestContentType -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>RequestContentType</maml:name>
          <maml:description>
            <maml:para>Specifies the request body content type to send to the API. When omitted, defaults to "application/json". </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>application/json</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: ResponseContentType -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>ResponseContentType</maml:name>
          <maml:description>
            <maml:para>Specifies the response body content type returned by the API. When omitted, defaults to "application/json". </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>application/json</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Team -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Team</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeam (if any). For more details, see the Get-TfsTeam cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: UseHost -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>UseHost</maml:name>
          <maml:description>
            <maml:para>Specifies an alternate host name for APIs not hosted in "dev.azure.com", e.g. "vsaex.dev.azure.com" or "vssps.dev.azure.com". </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Path -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="0">
        <maml:name>Path</maml:name>
        <maml:description>
          <maml:para>Specifies the path of the REST API to call. Tipically it is the portion of the URL after the name of the collection/organization, i.e. in the URL https://dev.azure.com/{organization}/_apis/projects?api-version=5.1 the path is "/_apis/projects". </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Method -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Method</maml:name>
        <maml:description>
          <maml:para>Specifies the HTTP method to call the API endpoint. When omitted, defaults to "GET". </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>GET</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Body -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Content">
        <maml:name>Body</maml:name>
        <maml:description>
          <maml:para>Specifies the request body to send to the API endpoint. Tipically contains the JSON payload required by the API. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Content">
        <maml:name>Content</maml:name>
        <maml:description>
          <maml:para>Specifies the request body to send to the API endpoint. Tipically contains the JSON payload required by the API. </maml:para>
          <maml:para>This is an alias of the Body parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: RequestContentType -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>RequestContentType</maml:name>
        <maml:description>
          <maml:para>Specifies the request body content type to send to the API. When omitted, defaults to "application/json". </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>application/json</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: ResponseContentType -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>ResponseContentType</maml:name>
        <maml:description>
          <maml:para>Specifies the response body content type returned by the API. When omitted, defaults to "application/json". </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>application/json</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: AdditionalHeaders -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>AdditionalHeaders</maml:name>
        <maml:description>
          <maml:para>Specifies a hashtable with additional HTTP headers to send to the API endpoint. </maml:para>
        </maml:description>
        <command:parameterValue required="true">Hashtable</command:parameterValue>
        <dev:type>
          <maml:name>System.Collections.Hashtable</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: QueryParameters -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="1" aliases="Parameters">
        <maml:name>QueryParameters</maml:name>
        <maml:description>
          <maml:para>Specifies a hashtable with additional query parameters to send to the API endpoint. </maml:para>
        </maml:description>
        <command:parameterValue required="true">Hashtable</command:parameterValue>
        <dev:type>
          <maml:name>System.Collections.Hashtable</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="1" aliases="Parameters">
        <maml:name>Parameters</maml:name>
        <maml:description>
          <maml:para>Specifies a hashtable with additional query parameters to send to the API endpoint. </maml:para>
          <maml:para>This is an alias of the QueryParameters parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">Hashtable</command:parameterValue>
        <dev:type>
          <maml:name>System.Collections.Hashtable</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: ApiVersion -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>ApiVersion</maml:name>
        <maml:description>
          <maml:para>Specifies the desired API version. When omitted, defaults to "4.1". </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>4.1</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: UseHost -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>UseHost</maml:name>
        <maml:description>
          <maml:para>Specifies an alternate host name for APIs not hosted in "dev.azure.com", e.g. "vsaex.dev.azure.com" or "vssps.dev.azure.com". </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: NoAutoUnwrap -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>NoAutoUnwrap</maml:name>
        <maml:description>
          <maml:para>Prevents the automatic expansion (unwrapping) of the 'value' property in the response JSON. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Raw -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Raw</maml:name>
        <maml:description>
          <maml:para>Returns the API response as an unparsed string. If omitted, JSON responses will be parsed, converted and returned as objects (via ConvertFrom-Json). </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Destination -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Destination</maml:name>
        <maml:description>
          <maml:para>Saves the API response to a file. If omitted, the response will be written to the stardard output stream. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: AsTask -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>AsTask</maml:name>
        <maml:description>
          <maml:para>Returns the System.Threading.Tasks.Task object used to issue the asynchronous call to the API. The caller is responsible for finishing the asynchronous call by e.g. accessing the Result property. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Team -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Team</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeam (if any). For more details, see the Get-TfsTeam cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Organization</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          <maml:para>This is an alias of the Collection parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Server -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Server</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes />
    <command:returnValues />
    <command:examples>
      <command:example>
        <maml:title>----------  EXAMPLE 1  ----------</maml:title>
        <dev:code>PS&gt; Invoke-TfsRestApi -Method GET -Path /_apis/projects -ApiVersion 4.1 -Collection DefaultCollection</dev:code>
        <dev:remarks>
          <maml:para>Calls a REST API that lists all team projects in a TFS collection named DefaultCollection</maml:para>
          <maml:para></maml:para>
        </dev:remarks>
      </command:example>
      <command:example>
        <maml:title>----------  EXAMPLE 2  ----------</maml:title>
        <dev:code>PS&gt; Invoke-TfsRestApi 'GET https://extmgmt.dev.azure.com/{organization}/_apis/extensionmanagement/installedextensions?api-version=5.1-preview.1'</dev:code>
        <dev:remarks>
          <maml:para>Calls the API described by an example extracted from the docs.microsoft.com web site. HTTP method, host name and API version are all set based on the supplied values; Tokens {organization}, {project} and {team} are properly replaced with the corresponding values provided by the current connection context (via previous calls to Connect-TfsTeamProjectCollection, Connect-TfsTeamProject and/or Connect-TfsTeam).</maml:para>
          <maml:para></maml:para>
        </dev:remarks>
      </command:example>
      <command:example>
        <maml:title>----------  EXAMPLE 3  ----------</maml:title>
        <dev:code>PS&gt; Invoke-TfsRestApi 'GET https://{instance}/{collection}/_apis/process/processes?api-version=4.1' -Collection http://vsalm:8080/tfs/DefaultCollection</dev:code>
        <dev:remarks>
          <maml:para>Calls an API in a TFS instance, parsing the example provided by the docs.microsoft.com web site.</maml:para>
          <maml:para></maml:para>
        </dev:remarks>
      </command:example>
    </command:examples>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/RestApi/Invoke-TfsRestApi</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Get-TfsRestClient -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="RestApi">
    <command:details>
      <command:name>Get-TfsRestClient</command:name>
      <command:verb>Get</command:verb>
      <command:noun>TfsRestClient</command:noun>
      <maml:description>
        <maml:para>Gets an Azure DevOps HTTP Client object instance. </maml:para>
      </maml:description>
    </command:details>
    <maml:description>
      <maml:para>Connection objects (Microsoft.VisualStudio.Services.Client.VssConnection in PowerShell Core, Microsoft.TeamFoundation.Client.TfsTeamProjectCollection in Windows PowerShell) provide access to many HTTP client objects such as Microsoft.TeamFoundation.WorkItemTracking.WebApi.WorkItemTrackingHttpClient that wrap many of the REST APIs exposed by Azure DevOps. Those clients inherit the authentication information supplied by their parent connection object and can be used as a more convenient mechanism to issue API calls. </maml:para>
    </maml:description>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Get-TfsRestClient</maml:name>
        <!-- Parameter: TypeName -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="0" aliases="Type">
          <maml:name>TypeName</maml:name>
          <maml:description>
            <maml:para>Specifies the full type name (optionally including its assembly name) of the HTTP Client class to return. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named" aliases="Organization">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: TypeName -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="0" aliases="Type">
        <maml:name>TypeName</maml:name>
        <maml:description>
          <maml:para>Specifies the full type name (optionally including its assembly name) of the HTTP Client class to return. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="true" globbing="false" pipelineInput="false" position="0" aliases="Type">
        <maml:name>Type</maml:name>
        <maml:description>
          <maml:para>Specifies the full type name (optionally including its assembly name) of the HTTP Client class to return. </maml:para>
          <maml:para>This is an alias of the TypeName parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named" aliases="Organization">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named" aliases="Organization">
        <maml:name>Organization</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          <maml:para>This is an alias of the Collection parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Server -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Server</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: VssHttpClientBase -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.VisualStudio.Services.WebApi.VssHttpClientBase</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/RestApi/Get-TfsRestClient</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Get-TfsServiceHookConsumer -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="ServiceHook">
    <command:details>
      <command:name>Get-TfsServiceHookConsumer</command:name>
      <command:verb>Get</command:verb>
      <command:noun>TfsServiceHookConsumer</command:noun>
      <maml:description>
        <maml:para>Gets one or more service hook consumers. </maml:para>
      </maml:description>
    </command:details>
    <maml:description>
      <maml:para>Service hook consumers are the services that can consume (receive) notifications triggered by Azure DevOps. Examples of consumers available out-of-box with Azure DevOps are Microsoft Teams, Slack, Trello ou the generic WebHook consumer. Use this cmdlet to list the available consumers and get the ID of the desired one to be able to manage service hook subscriptions. </maml:para>
    </maml:description>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Get-TfsServiceHookConsumer</maml:name>
        <!-- Parameter: Consumer -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name,Id">
          <maml:name>Consumer</maml:name>
          <maml:description>
            <maml:para>Specifies the name or ID of the service hook consumer to return. Wildcards are supported. When omitted, all service hook consumers registered in the given project collection/organization are returned. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>*</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named" aliases="Organization">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Consumer -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name,Id">
        <maml:name>Consumer</maml:name>
        <maml:description>
          <maml:para>Specifies the name or ID of the service hook consumer to return. Wildcards are supported. When omitted, all service hook consumers registered in the given project collection/organization are returned. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>*</dev:defaultValue>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name,Id">
        <maml:name>Name</maml:name>
        <maml:description>
          <maml:para>Specifies the name or ID of the service hook consumer to return. Wildcards are supported. When omitted, all service hook consumers registered in the given project collection/organization are returned. </maml:para>
          <maml:para>This is an alias of the Consumer parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>*</dev:defaultValue>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name,Id">
        <maml:name>Id</maml:name>
        <maml:description>
          <maml:para>Specifies the name or ID of the service hook consumer to return. Wildcards are supported. When omitted, all service hook consumers registered in the given project collection/organization are returned. </maml:para>
          <maml:para>This is an alias of the Consumer parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>*</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named" aliases="Organization">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named" aliases="Organization">
        <maml:name>Organization</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          <maml:para>This is an alias of the Collection parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Server -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Server</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: Consumer -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.VisualStudio.Services.ServiceHooks.WebApi.Consumer</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/ServiceHook/Get-TfsServiceHookConsumer</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Get-TfsServiceHookNotificationHistory -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="ServiceHook">
    <command:details>
      <command:name>Get-TfsServiceHookNotificationHistory</command:name>
      <command:verb>Get</command:verb>
      <command:noun>TfsServiceHookNotificationHistory</command:noun>
      <maml:description>
        <maml:para>Gets the notification history for a given service hook subscription </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Get-TfsServiceHookNotificationHistory</maml:name>
        <!-- Parameter: Subscription -->
        <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0">
          <maml:name>Subscription</maml:name>
          <maml:description>
            <maml:para>Specifies the subscription to get the notification history from. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named" aliases="Organization">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: From -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>From</maml:name>
          <maml:description>
            <maml:para>Specifies the beginning of a date interval to filter notifications on. </maml:para>
          </maml:description>
          <command:parameterValue required="true">DateTime</command:parameterValue>
          <dev:type>
            <maml:name>System.DateTime</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Status -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Status</maml:name>
          <maml:description>
            <maml:para>Specifies the notification status to filter on. </maml:para>
            <maml:para>Possible values: Queued, Processing, RequestInProgress, Completed</maml:para>
          </maml:description>
          <command:parameterValue required="true">NotificationStatus</command:parameterValue>
          <dev:type>
            <maml:name>Microsoft.VisualStudio.Services.ServiceHooks.WebApi.NotificationStatus</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>0</dev:defaultValue>
          <command:parameterValueGroup>
            <command:parameterValue required="false" variableLength="false">Queued</command:parameterValue>
            <command:parameterValue required="false" variableLength="false">Processing</command:parameterValue>
            <command:parameterValue required="false" variableLength="false">RequestInProgress</command:parameterValue>
            <command:parameterValue required="false" variableLength="false">Completed</command:parameterValue>
          </command:parameterValueGroup>
        </command:parameter>
        <!-- Parameter: To -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>To</maml:name>
          <maml:description>
            <maml:para>Specifies the end of a date interval to filter notifications on. </maml:para>
          </maml:description>
          <command:parameterValue required="true">DateTime</command:parameterValue>
          <dev:type>
            <maml:name>System.DateTime</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Subscription -->
      <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0">
        <maml:name>Subscription</maml:name>
        <maml:description>
          <maml:para>Specifies the subscription to get the notification history from. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: From -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>From</maml:name>
        <maml:description>
          <maml:para>Specifies the beginning of a date interval to filter notifications on. </maml:para>
        </maml:description>
        <command:parameterValue required="true">DateTime</command:parameterValue>
        <dev:type>
          <maml:name>System.DateTime</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: To -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>To</maml:name>
        <maml:description>
          <maml:para>Specifies the end of a date interval to filter notifications on. </maml:para>
        </maml:description>
        <command:parameterValue required="true">DateTime</command:parameterValue>
        <dev:type>
          <maml:name>System.DateTime</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Status -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Status</maml:name>
        <maml:description>
          <maml:para>Specifies the notification status to filter on. </maml:para>
          <maml:para>Possible values: Queued, Processing, RequestInProgress, Completed</maml:para>
        </maml:description>
        <command:parameterValue required="true">NotificationStatus</command:parameterValue>
        <dev:type>
          <maml:name>Microsoft.VisualStudio.Services.ServiceHooks.WebApi.NotificationStatus</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>0</dev:defaultValue>
        <command:parameterValueGroup>
          <command:parameterValue required="false" variableLength="false">Queued</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">Processing</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">RequestInProgress</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">Completed</command:parameterValue>
        </command:parameterValueGroup>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named" aliases="Organization">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named" aliases="Organization">
        <maml:name>Organization</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          <maml:para>This is an alias of the Collection parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Server -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Server</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the subscription to get the notification history from. </maml:para>
        </maml:description>
      </command:inputType>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: Notification -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.VisualStudio.Services.ServiceHooks.WebApi.Notification</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/ServiceHook/Get-TfsServiceHookNotificationHistory</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Get-TfsServiceHookPublisher -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="ServiceHook">
    <command:details>
      <command:name>Get-TfsServiceHookPublisher</command:name>
      <command:verb>Get</command:verb>
      <command:noun>TfsServiceHookPublisher</command:noun>
      <maml:description>
        <maml:para>Gets one or more service hook publishers. </maml:para>
      </maml:description>
    </command:details>
    <maml:description>
      <maml:para>Service hook publishers are the components inside of Azure DevOps that can publish (send) notifications triggered by event such as "work item changed" or "build queued". Use this cmdlet to list the available publishers and get the ID of the desired one to be able to manage service hook subscriptions. </maml:para>
    </maml:description>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Get-TfsServiceHookPublisher</maml:name>
        <!-- Parameter: Publisher -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name,Id">
          <maml:name>Publisher</maml:name>
          <maml:description>
            <maml:para>Specifies the name or ID of the service hook publisher to return. Wildcards are supported. When omitted, returns all service hook consumers currently supported the current by Azure DevOps organization / TFS collection. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>*</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named" aliases="Organization">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Publisher -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name,Id">
        <maml:name>Publisher</maml:name>
        <maml:description>
          <maml:para>Specifies the name or ID of the service hook publisher to return. Wildcards are supported. When omitted, returns all service hook consumers currently supported the current by Azure DevOps organization / TFS collection. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>*</dev:defaultValue>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name,Id">
        <maml:name>Name</maml:name>
        <maml:description>
          <maml:para>Specifies the name or ID of the service hook publisher to return. Wildcards are supported. When omitted, returns all service hook consumers currently supported the current by Azure DevOps organization / TFS collection. </maml:para>
          <maml:para>This is an alias of the Publisher parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>*</dev:defaultValue>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name,Id">
        <maml:name>Id</maml:name>
        <maml:description>
          <maml:para>Specifies the name or ID of the service hook publisher to return. Wildcards are supported. When omitted, returns all service hook consumers currently supported the current by Azure DevOps organization / TFS collection. </maml:para>
          <maml:para>This is an alias of the Publisher parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>*</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named" aliases="Organization">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named" aliases="Organization">
        <maml:name>Organization</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          <maml:para>This is an alias of the Collection parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Server -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Server</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: Publisher -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.VisualStudio.Services.ServiceHooks.WebApi.Publisher</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/ServiceHook/Get-TfsServiceHookPublisher</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Get-TfsServiceHookSubscription -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="ServiceHook">
    <command:details>
      <command:name>Get-TfsServiceHookSubscription</command:name>
      <command:verb>Get</command:verb>
      <command:noun>TfsServiceHookSubscription</command:noun>
      <maml:description>
        <maml:para>Gets one or more service hook subscriptions </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Get-TfsServiceHookSubscription</maml:name>
        <!-- Parameter: Subscription -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name">
          <maml:name>Subscription</maml:name>
          <maml:description>
            <maml:para>Specifies the name ("action description") of the subscription. Wildcards are supported. When omitted, returns all service hook subscriptions in the given team project collection. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>*</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named" aliases="Organization">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Consumer -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Consumer</maml:name>
          <maml:description>
            <maml:para>Specifies the name or ID of the service hook consumer to filter subscriptions by. When omitted, returns all subscriptions regardless of their consumers. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: EventType -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>EventType</maml:name>
          <maml:description>
            <maml:para>Specifies the event type to filter subscriptions by. When omitted, returns all subscriptions regardless of their event types. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Publisher -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Publisher</maml:name>
          <maml:description>
            <maml:para>Specifies the name or ID of the service hook publisher to filter subscriptions by. When omitted, returns all subscriptions regardless of their publishers. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Subscription -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name">
        <maml:name>Subscription</maml:name>
        <maml:description>
          <maml:para>Specifies the name ("action description") of the subscription. Wildcards are supported. When omitted, returns all service hook subscriptions in the given team project collection. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>*</dev:defaultValue>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name">
        <maml:name>Name</maml:name>
        <maml:description>
          <maml:para>Specifies the name ("action description") of the subscription. Wildcards are supported. When omitted, returns all service hook subscriptions in the given team project collection. </maml:para>
          <maml:para>This is an alias of the Subscription parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>*</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Publisher -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Publisher</maml:name>
        <maml:description>
          <maml:para>Specifies the name or ID of the service hook publisher to filter subscriptions by. When omitted, returns all subscriptions regardless of their publishers. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Consumer -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Consumer</maml:name>
        <maml:description>
          <maml:para>Specifies the name or ID of the service hook consumer to filter subscriptions by. When omitted, returns all subscriptions regardless of their consumers. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: EventType -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>EventType</maml:name>
        <maml:description>
          <maml:para>Specifies the event type to filter subscriptions by. When omitted, returns all subscriptions regardless of their event types. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named" aliases="Organization">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named" aliases="Organization">
        <maml:name>Organization</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          <maml:para>This is an alias of the Collection parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Server -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Server</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: Subscription -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.VisualStudio.Services.ServiceHooks.WebApi.Subscription</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/ServiceHook/Get-TfsServiceHookSubscription</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Enter-TfsShell -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Shell">
    <command:details>
      <command:name>Enter-TfsShell</command:name>
      <command:verb>Enter</command:verb>
      <command:noun>TfsShell</command:noun>
      <maml:description>
        <maml:para>Activates the Azure DevOps Shell </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Enter-TfsShell</maml:name>
        <!-- Parameter: DoNotClearHost -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>DoNotClearHost</maml:name>
          <maml:description>
            <maml:para>Do not clear the host screen when activating the Azure DevOps Shell. When set, the prompt is enabled without clearing the screen. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: NoLogo -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>NoLogo</maml:name>
          <maml:description>
            <maml:para>Do not show the version banner when activating the Azure DevOps Shell. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: NoProfile -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>NoProfile</maml:name>
          <maml:description>
            <maml:para>Do not load the user profile TfsCmdlets.Profile.ps1 (if present) when activating the Azure DevOps Shell. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: WindowTitle -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>WindowTitle</maml:name>
          <maml:description>
            <maml:para>Specifies the shell window title. If omitted, defaults to "Azure DevOps Shell". </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>Azure DevOps Shell</dev:defaultValue>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: WindowTitle -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>WindowTitle</maml:name>
        <maml:description>
          <maml:para>Specifies the shell window title. If omitted, defaults to "Azure DevOps Shell". </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>Azure DevOps Shell</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: DoNotClearHost -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>DoNotClearHost</maml:name>
        <maml:description>
          <maml:para>Do not clear the host screen when activating the Azure DevOps Shell. When set, the prompt is enabled without clearing the screen. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: NoLogo -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>NoLogo</maml:name>
        <maml:description>
          <maml:para>Do not show the version banner when activating the Azure DevOps Shell. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: NoProfile -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>NoProfile</maml:name>
        <maml:description>
          <maml:para>Do not load the user profile TfsCmdlets.Profile.ps1 (if present) when activating the Azure DevOps Shell. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
    </command:parameters>
    <command:inputTypes />
    <command:returnValues />
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/Shell/Enter-TfsShell</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Exit-TfsShell -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Shell">
    <command:details>
      <command:name>Exit-TfsShell</command:name>
      <command:verb>Exit</command:verb>
      <command:noun>TfsShell</command:noun>
      <maml:description>
        <maml:para>Deactivates the Azure DevOps Shell </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Exit-TfsShell</maml:name>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters />
    <command:inputTypes />
    <command:returnValues />
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/Shell/Exit-TfsShell</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Connect-TfsTeam -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Team">
    <command:details>
      <command:name>Connect-TfsTeam</command:name>
      <command:verb>Connect</command:verb>
      <command:noun>TfsTeam</command:noun>
      <maml:description>
        <maml:para>Connects to a team. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: Cached credentials -->
      <command:syntaxItem tfscmdlets:parameterSet="Cached credentials">
        <maml:name>Connect-TfsTeam</maml:name>
        <!-- Parameter: Team -->
        <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0">
          <maml:name>Team</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. For more details, see the Get-TfsTeam cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Cached -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
          <maml:name>Cached</maml:name>
          <maml:description>
            <maml:para>Specifies that cached (default) credentials should be used when possible/available. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Passthru -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Passthru</maml:name>
          <maml:description>
            <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
      <!-- Parameter Set: User name and password -->
      <command:syntaxItem tfscmdlets:parameterSet="User name and password">
        <maml:name>Connect-TfsTeam</maml:name>
        <!-- Parameter: Team -->
        <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0">
          <maml:name>Team</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. For more details, see the Get-TfsTeam cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Password -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
          <maml:name>Password</maml:name>
          <maml:description>
            <maml:para>Specifies a password for authentication modes (such as Basic) that support username/password-based credentials. Must be used in conjunction with the -UserName argument </maml:para>
          </maml:description>
          <command:parameterValue required="true">SecureString</command:parameterValue>
          <dev:type>
            <maml:name>System.Security.SecureString</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: UserName -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
          <maml:name>UserName</maml:name>
          <maml:description>
            <maml:para>Specifies a user name for authentication modes (such as Basic) that support username/password-based credentials. Must be used in conjunction with the -Password argument </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Passthru -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Passthru</maml:name>
          <maml:description>
            <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
      <!-- Parameter Set: Credential object -->
      <command:syntaxItem tfscmdlets:parameterSet="Credential object">
        <maml:name>Connect-TfsTeam</maml:name>
        <!-- Parameter: Team -->
        <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0">
          <maml:name>Team</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. For more details, see the Get-TfsTeam cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Credential -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
          <maml:name>Credential</maml:name>
          <maml:description>
            <maml:para>Specifies a user account that has permission to perform this action. To provide a user name and password, a Personal Access Token, and/or to open a input dialog to enter your credentials, call Get-TfsCredential with the appropriate arguments and pass its return to this argument. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Passthru -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Passthru</maml:name>
          <maml:description>
            <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
      <!-- Parameter Set: Personal Access Token -->
      <command:syntaxItem tfscmdlets:parameterSet="Personal Access Token">
        <maml:name>Connect-TfsTeam</maml:name>
        <!-- Parameter: Team -->
        <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0">
          <maml:name>Team</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. For more details, see the Get-TfsTeam cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: PersonalAccessToken -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="named" aliases="Pat">
          <maml:name>PersonalAccessToken</maml:name>
          <maml:description>
            <maml:para>Specifies a personal access token, used as an alternate credential, to authenticate to Azure DevOps </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Passthru -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Passthru</maml:name>
          <maml:description>
            <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
      <!-- Parameter Set: Prompt for credential -->
      <command:syntaxItem tfscmdlets:parameterSet="Prompt for credential">
        <maml:name>Connect-TfsTeam</maml:name>
        <!-- Parameter: Team -->
        <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0">
          <maml:name>Team</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. For more details, see the Get-TfsTeam cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Interactive -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Interactive</maml:name>
          <maml:description>
            <maml:para>Prompts for user credentials. Can be used for any Team Foundation Server or Azure DevOps account - the proper login dialog is automatically selected. Should only be used in an interactive PowerShell session (i.e., a PowerShell terminal window), never in an unattended script (such as those executed during an automated build). Currently it is only supported in Windows PowerShell. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Passthru -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Passthru</maml:name>
          <maml:description>
            <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Team -->
      <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0">
        <maml:name>Team</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. For more details, see the Get-TfsTeam cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Passthru -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Passthru</maml:name>
        <maml:description>
          <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Organization</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          <maml:para>This is an alias of the Collection parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Server -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Server</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Cached -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
        <maml:name>Cached</maml:name>
        <maml:description>
          <maml:para>Specifies that cached (default) credentials should be used when possible/available. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: UserName -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
        <maml:name>UserName</maml:name>
        <maml:description>
          <maml:para>Specifies a user name for authentication modes (such as Basic) that support username/password-based credentials. Must be used in conjunction with the -Password argument </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Password -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
        <maml:name>Password</maml:name>
        <maml:description>
          <maml:para>Specifies a password for authentication modes (such as Basic) that support username/password-based credentials. Must be used in conjunction with the -UserName argument </maml:para>
        </maml:description>
        <command:parameterValue required="true">SecureString</command:parameterValue>
        <dev:type>
          <maml:name>System.Security.SecureString</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Credential -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
        <maml:name>Credential</maml:name>
        <maml:description>
          <maml:para>Specifies a user account that has permission to perform this action. To provide a user name and password, a Personal Access Token, and/or to open a input dialog to enter your credentials, call Get-TfsCredential with the appropriate arguments and pass its return to this argument. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: PersonalAccessToken -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="named" aliases="Pat">
        <maml:name>PersonalAccessToken</maml:name>
        <maml:description>
          <maml:para>Specifies a personal access token, used as an alternate credential, to authenticate to Azure DevOps </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="true" globbing="false" pipelineInput="false" position="named" aliases="Pat">
        <maml:name>Pat</maml:name>
        <maml:description>
          <maml:para>Specifies a personal access token, used as an alternate credential, to authenticate to Azure DevOps </maml:para>
          <maml:para>This is an alias of the PersonalAccessToken parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Interactive -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Interactive</maml:name>
        <maml:description>
          <maml:para>Prompts for user credentials. Can be used for any Team Foundation Server or Azure DevOps account - the proper login dialog is automatically selected. Should only be used in an interactive PowerShell session (i.e., a PowerShell terminal window), never in an unattended script (such as those executed during an automated build). Currently it is only supported in Windows PowerShell. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. For more details, see the Get-TfsTeam cmdlet. </maml:para>
        </maml:description>
      </command:inputType>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: Team -->
      <command:returnValue>
        <dev:type>
          <maml:name>TfsCmdlets.Models.Team</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/Team/Connect-TfsTeam</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Disconnect-TfsTeam -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Team">
    <command:details>
      <command:name>Disconnect-TfsTeam</command:name>
      <command:verb>Disconnect</command:verb>
      <command:noun>TfsTeam</command:noun>
      <maml:description>
        <maml:para>Disconnects from the currently connected team. </maml:para>
      </maml:description>
    </command:details>
    <maml:description>
      <maml:para>The Disconnect-TfsTeam cmdlet removes the connection previously set by its counterpart Connect-TfsTeam. Therefore, cmdlets relying on a "default team" as provided by "Get-TfsTeam -Current" will no longer work after a call to this cmdlet, unless their -Team argument is provided or a new call to Connect-TfsTeam is made. </maml:para>
    </maml:description>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Disconnect-TfsTeam</maml:name>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters />
    <command:inputTypes />
    <command:returnValues />
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/Team/Disconnect-TfsTeam</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Get-TfsTeam -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Team">
    <command:details>
      <command:name>Get-TfsTeam</command:name>
      <command:verb>Get</command:verb>
      <command:noun>TfsTeam</command:noun>
      <maml:description>
        <maml:para>Gets information about one or more teams. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: Get by team -->
      <command:syntaxItem tfscmdlets:parameterSet="Get by team">
        <maml:name>Get-TfsTeam</maml:name>
        <!-- Parameter: Team -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name">
          <maml:name>Team</maml:name>
          <maml:description>
            <maml:para>Specifies the team to return. Accepted values are its name, its ID, or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object. Wildcards are supported. When omitted, all teams in the given team project are returned. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>*</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: IncludeMembers -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="QueryMembership">
          <maml:name>IncludeMembers</maml:name>
          <maml:description>
            <maml:para>Get team members (fills the Members property with a list of Microsoft.VisualStudio.Services.WebApi.TeamMember objects). When omitted, only basic team information (such as name, description and ID) are returned. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: IncludeSettings -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>IncludeSettings</maml:name>
          <maml:description>
            <maml:para>Gets team settings (fills the Settings, TeamField, and IterationPaths properties). </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
      <!-- Parameter Set: Cached credentials -->
      <command:syntaxItem tfscmdlets:parameterSet="Cached credentials">
        <maml:name>Get-TfsTeam</maml:name>
        <!-- Parameter: Team -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name">
          <maml:name>Team</maml:name>
          <maml:description>
            <maml:para>Specifies the team to return. Accepted values are its name, its ID, or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object. Wildcards are supported. When omitted, all teams in the given team project are returned. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>*</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Cached -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
          <maml:name>Cached</maml:name>
          <maml:description>
            <maml:para>Specifies that cached (default) credentials should be used when possible/available. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Default -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Default</maml:name>
          <maml:description>
            <maml:para>Returns the default team in the given team project. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: IncludeMembers -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="QueryMembership">
          <maml:name>IncludeMembers</maml:name>
          <maml:description>
            <maml:para>Get team members (fills the Members property with a list of Microsoft.VisualStudio.Services.WebApi.TeamMember objects). When omitted, only basic team information (such as name, description and ID) are returned. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: IncludeSettings -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>IncludeSettings</maml:name>
          <maml:description>
            <maml:para>Gets team settings (fills the Settings, TeamField, and IterationPaths properties). </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
      <!-- Parameter Set: User name and password -->
      <command:syntaxItem tfscmdlets:parameterSet="User name and password">
        <maml:name>Get-TfsTeam</maml:name>
        <!-- Parameter: Team -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name">
          <maml:name>Team</maml:name>
          <maml:description>
            <maml:para>Specifies the team to return. Accepted values are its name, its ID, or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object. Wildcards are supported. When omitted, all teams in the given team project are returned. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>*</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Password -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
          <maml:name>Password</maml:name>
          <maml:description>
            <maml:para>Specifies a password for authentication modes (such as Basic) that support username/password-based credentials. Must be used in conjunction with the -UserName argument </maml:para>
          </maml:description>
          <command:parameterValue required="true">SecureString</command:parameterValue>
          <dev:type>
            <maml:name>System.Security.SecureString</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: UserName -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
          <maml:name>UserName</maml:name>
          <maml:description>
            <maml:para>Specifies a user name for authentication modes (such as Basic) that support username/password-based credentials. Must be used in conjunction with the -Password argument </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Default -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Default</maml:name>
          <maml:description>
            <maml:para>Returns the default team in the given team project. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: IncludeMembers -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="QueryMembership">
          <maml:name>IncludeMembers</maml:name>
          <maml:description>
            <maml:para>Get team members (fills the Members property with a list of Microsoft.VisualStudio.Services.WebApi.TeamMember objects). When omitted, only basic team information (such as name, description and ID) are returned. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: IncludeSettings -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>IncludeSettings</maml:name>
          <maml:description>
            <maml:para>Gets team settings (fills the Settings, TeamField, and IterationPaths properties). </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
      <!-- Parameter Set: Credential object -->
      <command:syntaxItem tfscmdlets:parameterSet="Credential object">
        <maml:name>Get-TfsTeam</maml:name>
        <!-- Parameter: Team -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name">
          <maml:name>Team</maml:name>
          <maml:description>
            <maml:para>Specifies the team to return. Accepted values are its name, its ID, or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object. Wildcards are supported. When omitted, all teams in the given team project are returned. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>*</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Credential -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
          <maml:name>Credential</maml:name>
          <maml:description>
            <maml:para>Specifies a user account that has permission to perform this action. To provide a user name and password, a Personal Access Token, and/or to open a input dialog to enter your credentials, call Get-TfsCredential with the appropriate arguments and pass its return to this argument. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Default -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Default</maml:name>
          <maml:description>
            <maml:para>Returns the default team in the given team project. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: IncludeMembers -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="QueryMembership">
          <maml:name>IncludeMembers</maml:name>
          <maml:description>
            <maml:para>Get team members (fills the Members property with a list of Microsoft.VisualStudio.Services.WebApi.TeamMember objects). When omitted, only basic team information (such as name, description and ID) are returned. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: IncludeSettings -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>IncludeSettings</maml:name>
          <maml:description>
            <maml:para>Gets team settings (fills the Settings, TeamField, and IterationPaths properties). </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
      <!-- Parameter Set: Personal Access Token -->
      <command:syntaxItem tfscmdlets:parameterSet="Personal Access Token">
        <maml:name>Get-TfsTeam</maml:name>
        <!-- Parameter: Team -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name">
          <maml:name>Team</maml:name>
          <maml:description>
            <maml:para>Specifies the team to return. Accepted values are its name, its ID, or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object. Wildcards are supported. When omitted, all teams in the given team project are returned. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>*</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: PersonalAccessToken -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="named" aliases="Pat">
          <maml:name>PersonalAccessToken</maml:name>
          <maml:description>
            <maml:para>Specifies a personal access token, used as an alternate credential, to authenticate to Azure DevOps </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Default -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Default</maml:name>
          <maml:description>
            <maml:para>Returns the default team in the given team project. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: IncludeMembers -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="QueryMembership">
          <maml:name>IncludeMembers</maml:name>
          <maml:description>
            <maml:para>Get team members (fills the Members property with a list of Microsoft.VisualStudio.Services.WebApi.TeamMember objects). When omitted, only basic team information (such as name, description and ID) are returned. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: IncludeSettings -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>IncludeSettings</maml:name>
          <maml:description>
            <maml:para>Gets team settings (fills the Settings, TeamField, and IterationPaths properties). </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
      <!-- Parameter Set: Prompt for credential -->
      <command:syntaxItem tfscmdlets:parameterSet="Prompt for credential">
        <maml:name>Get-TfsTeam</maml:name>
        <!-- Parameter: Team -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name">
          <maml:name>Team</maml:name>
          <maml:description>
            <maml:para>Specifies the team to return. Accepted values are its name, its ID, or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object. Wildcards are supported. When omitted, all teams in the given team project are returned. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>*</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Default -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Default</maml:name>
          <maml:description>
            <maml:para>Returns the default team in the given team project. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: IncludeMembers -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="QueryMembership">
          <maml:name>IncludeMembers</maml:name>
          <maml:description>
            <maml:para>Get team members (fills the Members property with a list of Microsoft.VisualStudio.Services.WebApi.TeamMember objects). When omitted, only basic team information (such as name, description and ID) are returned. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: IncludeSettings -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>IncludeSettings</maml:name>
          <maml:description>
            <maml:para>Gets team settings (fills the Settings, TeamField, and IterationPaths properties). </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Interactive -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Interactive</maml:name>
          <maml:description>
            <maml:para>Prompts for user credentials. Can be used for any Team Foundation Server or Azure DevOps account - the proper login dialog is automatically selected. Should only be used in an interactive PowerShell session (i.e., a PowerShell terminal window), never in an unattended script (such as those executed during an automated build). Currently it is only supported in Windows PowerShell. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
      <!-- Parameter Set: Get current -->
      <command:syntaxItem tfscmdlets:parameterSet="Get current">
        <maml:name>Get-TfsTeam</maml:name>
        <!-- Parameter: Current -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
          <maml:name>Current</maml:name>
          <maml:description>
            <maml:para>Returns the team specified in the last call to Connect-TfsTeam (i.e. the "current" team) </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: IncludeMembers -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="QueryMembership">
          <maml:name>IncludeMembers</maml:name>
          <maml:description>
            <maml:para>Get team members (fills the Members property with a list of Microsoft.VisualStudio.Services.WebApi.TeamMember objects). When omitted, only basic team information (such as name, description and ID) are returned. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: IncludeSettings -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>IncludeSettings</maml:name>
          <maml:description>
            <maml:para>Gets team settings (fills the Settings, TeamField, and IterationPaths properties). </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
      </command:syntaxItem>
      <!-- Parameter Set: Get default team -->
      <command:syntaxItem tfscmdlets:parameterSet="Get default team">
        <maml:name>Get-TfsTeam</maml:name>
        <!-- Parameter: Default -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
          <maml:name>Default</maml:name>
          <maml:description>
            <maml:para>Returns the default team in the given team project. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: IncludeMembers -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="QueryMembership">
          <maml:name>IncludeMembers</maml:name>
          <maml:description>
            <maml:para>Get team members (fills the Members property with a list of Microsoft.VisualStudio.Services.WebApi.TeamMember objects). When omitted, only basic team information (such as name, description and ID) are returned. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: IncludeSettings -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>IncludeSettings</maml:name>
          <maml:description>
            <maml:para>Gets team settings (fills the Settings, TeamField, and IterationPaths properties). </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Team -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name">
        <maml:name>Team</maml:name>
        <maml:description>
          <maml:para>Specifies the team to return. Accepted values are its name, its ID, or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object. Wildcards are supported. When omitted, all teams in the given team project are returned. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>*</dev:defaultValue>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name">
        <maml:name>Name</maml:name>
        <maml:description>
          <maml:para>Specifies the team to return. Accepted values are its name, its ID, or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object. Wildcards are supported. When omitted, all teams in the given team project are returned. </maml:para>
          <maml:para>This is an alias of the Team parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>*</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: IncludeMembers -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="QueryMembership">
        <maml:name>IncludeMembers</maml:name>
        <maml:description>
          <maml:para>Get team members (fills the Members property with a list of Microsoft.VisualStudio.Services.WebApi.TeamMember objects). When omitted, only basic team information (such as name, description and ID) are returned. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="QueryMembership">
        <maml:name>QueryMembership</maml:name>
        <maml:description>
          <maml:para>Get team members (fills the Members property with a list of Microsoft.VisualStudio.Services.WebApi.TeamMember objects). When omitted, only basic team information (such as name, description and ID) are returned. </maml:para>
          <maml:para>This is an alias of the IncludeMembers parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: IncludeSettings -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>IncludeSettings</maml:name>
        <maml:description>
          <maml:para>Gets team settings (fills the Settings, TeamField, and IterationPaths properties). </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Current -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
        <maml:name>Current</maml:name>
        <maml:description>
          <maml:para>Returns the team specified in the last call to Connect-TfsTeam (i.e. the "current" team) </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Default -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
        <maml:name>Default</maml:name>
        <maml:description>
          <maml:para>Returns the default team in the given team project. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Organization</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          <maml:para>This is an alias of the Collection parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Server -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Server</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Cached -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
        <maml:name>Cached</maml:name>
        <maml:description>
          <maml:para>Specifies that cached (default) credentials should be used when possible/available. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: UserName -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
        <maml:name>UserName</maml:name>
        <maml:description>
          <maml:para>Specifies a user name for authentication modes (such as Basic) that support username/password-based credentials. Must be used in conjunction with the -Password argument </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Password -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
        <maml:name>Password</maml:name>
        <maml:description>
          <maml:para>Specifies a password for authentication modes (such as Basic) that support username/password-based credentials. Must be used in conjunction with the -UserName argument </maml:para>
        </maml:description>
        <command:parameterValue required="true">SecureString</command:parameterValue>
        <dev:type>
          <maml:name>System.Security.SecureString</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Credential -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
        <maml:name>Credential</maml:name>
        <maml:description>
          <maml:para>Specifies a user account that has permission to perform this action. To provide a user name and password, a Personal Access Token, and/or to open a input dialog to enter your credentials, call Get-TfsCredential with the appropriate arguments and pass its return to this argument. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: PersonalAccessToken -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="named" aliases="Pat">
        <maml:name>PersonalAccessToken</maml:name>
        <maml:description>
          <maml:para>Specifies a personal access token, used as an alternate credential, to authenticate to Azure DevOps </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="true" globbing="false" pipelineInput="false" position="named" aliases="Pat">
        <maml:name>Pat</maml:name>
        <maml:description>
          <maml:para>Specifies a personal access token, used as an alternate credential, to authenticate to Azure DevOps </maml:para>
          <maml:para>This is an alias of the PersonalAccessToken parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Interactive -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Interactive</maml:name>
        <maml:description>
          <maml:para>Prompts for user credentials. Can be used for any Team Foundation Server or Azure DevOps account - the proper login dialog is automatically selected. Should only be used in an interactive PowerShell session (i.e., a PowerShell terminal window), never in an unattended script (such as those executed during an automated build). Currently it is only supported in Windows PowerShell. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: Team -->
      <command:returnValue>
        <dev:type>
          <maml:name>TfsCmdlets.Models.Team</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/Team/Get-TfsTeam</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: New-TfsTeam -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Team">
    <command:details>
      <command:name>New-TfsTeam</command:name>
      <command:verb>New</command:verb>
      <command:noun>TfsTeam</command:noun>
      <maml:description>
        <maml:para>Creates a new team. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: Set team settings -->
      <command:syntaxItem tfscmdlets:parameterSet="Set team settings">
        <maml:name>New-TfsTeam</maml:name>
        <!-- Parameter: Team -->
        <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Name">
          <maml:name>Team</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the new team. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: AreaPaths -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>AreaPaths</maml:name>
          <maml:description>
            <maml:para>Specifies the backlog area path(s) that are associated with this team. Wildcards are supported. When the path ends with an asterisk, all child area paths will be included recursively. Otherwise, only the area itself (without its children) will be included. To include the children of the default area path, use the wildcard character (*) without a path. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string[]</command:parameterValue>
          <dev:type>
            <maml:name>System.String[]</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: BacklogIteration -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>BacklogIteration</maml:name>
          <maml:description>
            <maml:para>Specifies the team's backlog iteration path. When omitted, defaults to the team project's root iteration. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>\</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: DefaultAreaPath -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="TeamFieldValue">
          <maml:name>DefaultAreaPath</maml:name>
          <maml:description>
            <maml:para>Specifies the team's default area path (or "team field"). The default area path is assigned automatically to all work items created in a team's backlog and/or board. When omitted, an area path may still be associated to this team depending on whether NoAutomaticAreaPath is set </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: DefaultIterationMacro -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>DefaultIterationMacro</maml:name>
          <maml:description>
            <maml:para>Specifies the default iteration macro. When omitted, defaults to "@CurrentIteration". </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>@CurrentIteration</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Description -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Description</maml:name>
          <maml:description>
            <maml:para>Specifies a description of the new team. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: IterationPaths -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>IterationPaths</maml:name>
          <maml:description>
            <maml:para>Specifies the backlog iteration path(s) that are associated with this team. Wildcards are supported. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string[]</command:parameterValue>
          <dev:type>
            <maml:name>System.String[]</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: NoBacklogIteration -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>NoBacklogIteration</maml:name>
          <maml:description>
            <maml:para>Do not associate an iteration path automatically to the new team. When omitted, an iteration path is created (if needed) and then is set as the default backlog iteration </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: NoDefaultArea -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>NoDefaultArea</maml:name>
          <maml:description>
            <maml:para>Do not associate an area path automatically to the new team. When omitted, an area path is created (if needed) and then is set as the default area path / team field </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Passthru -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Passthru</maml:name>
          <maml:description>
            <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Team -->
      <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Name">
        <maml:name>Team</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the new team. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Name">
        <maml:name>Name</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the new team. </maml:para>
          <maml:para>This is an alias of the Team parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: DefaultAreaPath -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="TeamFieldValue">
        <maml:name>DefaultAreaPath</maml:name>
        <maml:description>
          <maml:para>Specifies the team's default area path (or "team field"). The default area path is assigned automatically to all work items created in a team's backlog and/or board. When omitted, an area path may still be associated to this team depending on whether NoAutomaticAreaPath is set </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="TeamFieldValue">
        <maml:name>TeamFieldValue</maml:name>
        <maml:description>
          <maml:para>Specifies the team's default area path (or "team field"). The default area path is assigned automatically to all work items created in a team's backlog and/or board. When omitted, an area path may still be associated to this team depending on whether NoAutomaticAreaPath is set </maml:para>
          <maml:para>This is an alias of the DefaultAreaPath parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: NoDefaultArea -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>NoDefaultArea</maml:name>
        <maml:description>
          <maml:para>Do not associate an area path automatically to the new team. When omitted, an area path is created (if needed) and then is set as the default area path / team field </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: AreaPaths -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>AreaPaths</maml:name>
        <maml:description>
          <maml:para>Specifies the backlog area path(s) that are associated with this team. Wildcards are supported. When the path ends with an asterisk, all child area paths will be included recursively. Otherwise, only the area itself (without its children) will be included. To include the children of the default area path, use the wildcard character (*) without a path. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string[]</command:parameterValue>
        <dev:type>
          <maml:name>System.String[]</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: BacklogIteration -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>BacklogIteration</maml:name>
        <maml:description>
          <maml:para>Specifies the team's backlog iteration path. When omitted, defaults to the team project's root iteration. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>\</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: DefaultIterationMacro -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>DefaultIterationMacro</maml:name>
        <maml:description>
          <maml:para>Specifies the default iteration macro. When omitted, defaults to "@CurrentIteration". </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>@CurrentIteration</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: IterationPaths -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>IterationPaths</maml:name>
        <maml:description>
          <maml:para>Specifies the backlog iteration path(s) that are associated with this team. Wildcards are supported. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string[]</command:parameterValue>
        <dev:type>
          <maml:name>System.String[]</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: NoBacklogIteration -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>NoBacklogIteration</maml:name>
        <maml:description>
          <maml:para>Do not associate an iteration path automatically to the new team. When omitted, an iteration path is created (if needed) and then is set as the default backlog iteration </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Description -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Description</maml:name>
        <maml:description>
          <maml:para>Specifies a description of the new team. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Passthru -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Passthru</maml:name>
        <maml:description>
          <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Organization</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          <maml:para>This is an alias of the Collection parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Server -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Server</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the name of the new team. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: Team -->
      <command:returnValue>
        <dev:type>
          <maml:name>TfsCmdlets.Models.Team</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/Team/New-TfsTeam</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Remove-TfsTeam -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Team">
    <command:details>
      <command:name>Remove-TfsTeam</command:name>
      <command:verb>Remove</command:verb>
      <command:noun>TfsTeam</command:noun>
      <maml:description>
        <maml:para>Deletes a team. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Remove-TfsTeam</maml:name>
        <!-- Parameter: Team -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Name">
          <maml:name>Team</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeam (if any). For more details, see the Get-TfsTeam cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Team -->
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Name">
        <maml:name>Team</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeam (if any). For more details, see the Get-TfsTeam cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Name">
        <maml:name>Name</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeam (if any). For more details, see the Get-TfsTeam cmdlet. </maml:para>
          <maml:para>This is an alias of the Team parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Organization</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          <maml:para>This is an alias of the Collection parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Server -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Server</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeam (if any). For more details, see the Get-TfsTeam cmdlet. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: WebApiTeam -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.TeamFoundation.Core.WebApi.WebApiTeam</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/Team/Remove-TfsTeam</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Rename-TfsTeam -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Team">
    <command:details>
      <command:name>Rename-TfsTeam</command:name>
      <command:verb>Rename</command:verb>
      <command:noun>TfsTeam</command:noun>
      <maml:description>
        <maml:para>Renames a team. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Rename-TfsTeam</maml:name>
        <!-- Parameter: Team -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Name">
          <maml:name>Team</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeam (if any). For more details, see the Get-TfsTeam cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: NewName -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="1">
          <maml:name>NewName</maml:name>
          <maml:description>
            <maml:para>Specifies the new name of the item. Enter only a name - i.e., for items that support paths, do not enter a path and name. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Team -->
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Name">
        <maml:name>Team</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeam (if any). For more details, see the Get-TfsTeam cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Name">
        <maml:name>Name</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeam (if any). For more details, see the Get-TfsTeam cmdlet. </maml:para>
          <maml:para>This is an alias of the Team parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: NewName -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="1">
        <maml:name>NewName</maml:name>
        <maml:description>
          <maml:para>Specifies the new name of the item. Enter only a name - i.e., for items that support paths, do not enter a path and name. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Organization</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          <maml:para>This is an alias of the Collection parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Server -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Server</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeam (if any). For more details, see the Get-TfsTeam cmdlet. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: WebApiTeam -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.TeamFoundation.Core.WebApi.WebApiTeam</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/Team/Rename-TfsTeam</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Set-TfsTeam -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Team">
    <command:details>
      <command:name>Set-TfsTeam</command:name>
      <command:verb>Set</command:verb>
      <command:noun>TfsTeam</command:noun>
      <maml:description>
        <maml:para>Changes the details of a team. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: Set team settings -->
      <command:syntaxItem tfscmdlets:parameterSet="Set team settings">
        <maml:name>Set-TfsTeam</maml:name>
        <!-- Parameter: Team -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Name">
          <maml:name>Team</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeam (if any). For more details, see the Get-TfsTeam cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: AreaPaths -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>AreaPaths</maml:name>
          <maml:description>
            <maml:para>Specifies the backlog area path(s) that are associated with this team. Wildcards are supported. When the path ends with an asterisk, all child area paths will be included recursively. Otherwise, only the area itself (without its children) will be included. To include the children of the default area path, use the wildcard character (*) without a path. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string[]</command:parameterValue>
          <dev:type>
            <maml:name>System.String[]</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: BacklogIteration -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>BacklogIteration</maml:name>
          <maml:description>
            <maml:para>Specifies the team's backlog iteration path. When omitted, defaults to the team project's root iteration. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>\</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: BacklogVisibilities -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>BacklogVisibilities</maml:name>
          <maml:description>
            <maml:para>Specifies which backlog levels (e.g. Epics, Features, Stories) should be visible. </maml:para>
          </maml:description>
          <command:parameterValue required="true">Hashtable</command:parameterValue>
          <dev:type>
            <maml:name>System.Collections.Hashtable</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: BugsBehavior -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>BugsBehavior</maml:name>
          <maml:description>
            <maml:para>Specifies how bugs should behave when added to a board. </maml:para>
            <maml:para>Possible values: Off, AsRequirements, AsTasks</maml:para>
          </maml:description>
          <command:parameterValue required="true">BugsBehavior</command:parameterValue>
          <dev:type>
            <maml:name>Microsoft.TeamFoundation.Work.WebApi.BugsBehavior</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>Off</dev:defaultValue>
          <command:parameterValueGroup>
            <command:parameterValue required="false" variableLength="false">Off</command:parameterValue>
            <command:parameterValue required="false" variableLength="false">AsRequirements</command:parameterValue>
            <command:parameterValue required="false" variableLength="false">AsTasks</command:parameterValue>
          </command:parameterValueGroup>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: DefaultAreaPath -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="TeamFieldValue">
          <maml:name>DefaultAreaPath</maml:name>
          <maml:description>
            <maml:para>Specifies the team's default area path (or "team field"). The default area path is assigned automatically to all work items created in a team's backlog and/or board. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: DefaultIterationMacro -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>DefaultIterationMacro</maml:name>
          <maml:description>
            <maml:para>Specifies the default iteration macro. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Description -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Description</maml:name>
          <maml:description>
            <maml:para>Specifies a new description </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Force -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Force</maml:name>
          <maml:description>
            <maml:para>Allows the cmdlet to create target area and/or iteration nodes if they're missing. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: IterationPaths -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>IterationPaths</maml:name>
          <maml:description>
            <maml:para>Specifies the backlog iteration path(s) that are associated with this team. Wildcards are supported. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string[]</command:parameterValue>
          <dev:type>
            <maml:name>System.String[]</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: OverwriteAreaPaths -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>OverwriteAreaPaths</maml:name>
          <maml:description>
            <maml:para>Replaces the existing area paths with the specified list of area paths. When omitted, the new area paths are added alongside the previously defined ones. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: OverwriteIterationPaths -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>OverwriteIterationPaths</maml:name>
          <maml:description>
            <maml:para>Replaces the existing iteration paths with the specified list of iteration paths. When omitted, the new iteration paths are added alongside the previously defined ones. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Passthru -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Passthru</maml:name>
          <maml:description>
            <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: WorkingDays -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>WorkingDays</maml:name>
          <maml:description>
            <maml:para>Specifies the team's Working Days. </maml:para>
          </maml:description>
          <command:parameterValue required="true">DayOfWeek[]</command:parameterValue>
          <dev:type>
            <maml:name>System.DayOfWeek[]</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
      <!-- Parameter Set: Set default team -->
      <command:syntaxItem tfscmdlets:parameterSet="Set default team">
        <maml:name>Set-TfsTeam</maml:name>
        <!-- Parameter: Team -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Name">
          <maml:name>Team</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeam (if any). For more details, see the Get-TfsTeam cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Default -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
          <maml:name>Default</maml:name>
          <maml:description>
            <maml:para>Sets the specified team as the default team. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Passthru -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Passthru</maml:name>
          <maml:description>
            <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Team -->
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Name">
        <maml:name>Team</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeam (if any). For more details, see the Get-TfsTeam cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0" aliases="Name">
        <maml:name>Name</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeam (if any). For more details, see the Get-TfsTeam cmdlet. </maml:para>
          <maml:para>This is an alias of the Team parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Default -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
        <maml:name>Default</maml:name>
        <maml:description>
          <maml:para>Sets the specified team as the default team. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Description -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Description</maml:name>
        <maml:description>
          <maml:para>Specifies a new description </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: DefaultAreaPath -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="TeamFieldValue">
        <maml:name>DefaultAreaPath</maml:name>
        <maml:description>
          <maml:para>Specifies the team's default area path (or "team field"). The default area path is assigned automatically to all work items created in a team's backlog and/or board. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="TeamFieldValue">
        <maml:name>TeamFieldValue</maml:name>
        <maml:description>
          <maml:para>Specifies the team's default area path (or "team field"). The default area path is assigned automatically to all work items created in a team's backlog and/or board. </maml:para>
          <maml:para>This is an alias of the DefaultAreaPath parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: AreaPaths -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>AreaPaths</maml:name>
        <maml:description>
          <maml:para>Specifies the backlog area path(s) that are associated with this team. Wildcards are supported. When the path ends with an asterisk, all child area paths will be included recursively. Otherwise, only the area itself (without its children) will be included. To include the children of the default area path, use the wildcard character (*) without a path. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string[]</command:parameterValue>
        <dev:type>
          <maml:name>System.String[]</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: OverwriteAreaPaths -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>OverwriteAreaPaths</maml:name>
        <maml:description>
          <maml:para>Replaces the existing area paths with the specified list of area paths. When omitted, the new area paths are added alongside the previously defined ones. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: BacklogIteration -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>BacklogIteration</maml:name>
        <maml:description>
          <maml:para>Specifies the team's backlog iteration path. When omitted, defaults to the team project's root iteration. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>\</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: DefaultIterationMacro -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>DefaultIterationMacro</maml:name>
        <maml:description>
          <maml:para>Specifies the default iteration macro. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: IterationPaths -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>IterationPaths</maml:name>
        <maml:description>
          <maml:para>Specifies the backlog iteration path(s) that are associated with this team. Wildcards are supported. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string[]</command:parameterValue>
        <dev:type>
          <maml:name>System.String[]</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: OverwriteIterationPaths -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>OverwriteIterationPaths</maml:name>
        <maml:description>
          <maml:para>Replaces the existing iteration paths with the specified list of iteration paths. When omitted, the new iteration paths are added alongside the previously defined ones. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: WorkingDays -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>WorkingDays</maml:name>
        <maml:description>
          <maml:para>Specifies the team's Working Days. </maml:para>
        </maml:description>
        <command:parameterValue required="true">DayOfWeek[]</command:parameterValue>
        <dev:type>
          <maml:name>System.DayOfWeek[]</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: BugsBehavior -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>BugsBehavior</maml:name>
        <maml:description>
          <maml:para>Specifies how bugs should behave when added to a board. </maml:para>
          <maml:para>Possible values: Off, AsRequirements, AsTasks</maml:para>
        </maml:description>
        <command:parameterValue required="true">BugsBehavior</command:parameterValue>
        <dev:type>
          <maml:name>Microsoft.TeamFoundation.Work.WebApi.BugsBehavior</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>Off</dev:defaultValue>
        <command:parameterValueGroup>
          <command:parameterValue required="false" variableLength="false">Off</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">AsRequirements</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">AsTasks</command:parameterValue>
        </command:parameterValueGroup>
      </command:parameter>
      <!-- Parameter: BacklogVisibilities -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>BacklogVisibilities</maml:name>
        <maml:description>
          <maml:para>Specifies which backlog levels (e.g. Epics, Features, Stories) should be visible. </maml:para>
        </maml:description>
        <command:parameterValue required="true">Hashtable</command:parameterValue>
        <dev:type>
          <maml:name>System.Collections.Hashtable</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Force -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Force</maml:name>
        <maml:description>
          <maml:para>Allows the cmdlet to create target area and/or iteration nodes if they're missing. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Passthru -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Passthru</maml:name>
        <maml:description>
          <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Organization</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          <maml:para>This is an alias of the Collection parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Server -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Server</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeam (if any). For more details, see the Get-TfsTeam cmdlet. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: WebApiTeam -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.TeamFoundation.Core.WebApi.WebApiTeam</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/Team/Set-TfsTeam</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Add-TfsTeamAdmin -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Team.TeamAdmin">
    <command:details>
      <command:name>Add-TfsTeamAdmin</command:name>
      <command:verb>Add</command:verb>
      <command:noun>TfsTeamAdmin</command:noun>
      <maml:description>
        <maml:para>Adds a new administrator to a team. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Add-TfsTeamAdmin</maml:name>
        <!-- Parameter: Admin -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0">
          <maml:name>Admin</maml:name>
          <maml:description>
            <maml:para>Specifies the administrator to add to the given team. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Team -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Team</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeam (if any). For more details, see the Get-TfsTeam cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Admin -->
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0">
        <maml:name>Admin</maml:name>
        <maml:description>
          <maml:para>Specifies the administrator to add to the given team. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Team -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Team</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeam (if any). For more details, see the Get-TfsTeam cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Organization</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          <maml:para>This is an alias of the Collection parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Server -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Server</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the administrator to add to the given team. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: Identity -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.VisualStudio.Services.Identity.Identity</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/Team/TeamAdmin/Add-TfsTeamAdmin</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Get-TfsTeamAdmin -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Team.TeamAdmin">
    <command:details>
      <command:name>Get-TfsTeamAdmin</command:name>
      <command:verb>Get</command:verb>
      <command:noun>TfsTeamAdmin</command:noun>
      <maml:description>
        <maml:para>Gets the administrators of a team. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Get-TfsTeamAdmin</maml:name>
        <!-- Parameter: Admin -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="1">
          <maml:name>Admin</maml:name>
          <maml:description>
            <maml:para>Specifies the administrator to get from the given team. Wildcards are supported. When omitted, all administrators are returned. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>*</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Team -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
          <maml:name>Team</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeam (if any). For more details, see the Get-TfsTeam cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Admin -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="1">
        <maml:name>Admin</maml:name>
        <maml:description>
          <maml:para>Specifies the administrator to get from the given team. Wildcards are supported. When omitted, all administrators are returned. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>*</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Team -->
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
        <maml:name>Team</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeam (if any). For more details, see the Get-TfsTeam cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Organization</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          <maml:para>This is an alias of the Collection parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Server -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Server</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeam (if any). For more details, see the Get-TfsTeam cmdlet. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: Identity -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.VisualStudio.Services.Identity.Identity</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/Team/TeamAdmin/Get-TfsTeamAdmin</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Remove-TfsTeamAdmin -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Team.TeamAdmin">
    <command:details>
      <command:name>Remove-TfsTeamAdmin</command:name>
      <command:verb>Remove</command:verb>
      <command:noun>TfsTeamAdmin</command:noun>
      <maml:description>
        <maml:para>Removes an administrator from a team. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Remove-TfsTeamAdmin</maml:name>
        <!-- Parameter: Admin -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0">
          <maml:name>Admin</maml:name>
          <maml:description>
            <maml:para>Specifies the administrator to remove from the team. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Team -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Team</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeam (if any). For more details, see the Get-TfsTeam cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Admin -->
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0">
        <maml:name>Admin</maml:name>
        <maml:description>
          <maml:para>Specifies the administrator to remove from the team. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Team -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Team</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeam (if any). For more details, see the Get-TfsTeam cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Organization</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          <maml:para>This is an alias of the Collection parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Server -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Server</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the administrator to remove from the team. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: Identity -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.VisualStudio.Services.Identity.Identity</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/Team/TeamAdmin/Remove-TfsTeamAdmin</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Get-TfsTeamBacklogLevel -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Team.Backlog">
    <command:details>
      <command:name>Get-TfsTeamBacklogLevel</command:name>
      <command:verb>Get</command:verb>
      <command:noun>TfsTeamBacklogLevel</command:noun>
      <maml:description>
        <maml:para>Gets information about one or more backlog levels of a given team. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Get-TfsTeamBacklogLevel</maml:name>
        <!-- Parameter: Backlog -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name">
          <maml:name>Backlog</maml:name>
          <maml:description>
            <maml:para>Specifies one or more backlog level configurations to be returned. Valid values are the name (e.g. "Stories") or the ID (e.g. "Microsoft.RequirementCategory") of the backlog level to return. Wilcards are supported. When omitted, returns all backlogs levels of the given team. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>*</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Team -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
          <maml:name>Team</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeam (if any). For more details, see the Get-TfsTeam cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Backlog -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name">
        <maml:name>Backlog</maml:name>
        <maml:description>
          <maml:para>Specifies one or more backlog level configurations to be returned. Valid values are the name (e.g. "Stories") or the ID (e.g. "Microsoft.RequirementCategory") of the backlog level to return. Wilcards are supported. When omitted, returns all backlogs levels of the given team. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>*</dev:defaultValue>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name">
        <maml:name>Name</maml:name>
        <maml:description>
          <maml:para>Specifies one or more backlog level configurations to be returned. Valid values are the name (e.g. "Stories") or the ID (e.g. "Microsoft.RequirementCategory") of the backlog level to return. Wilcards are supported. When omitted, returns all backlogs levels of the given team. </maml:para>
          <maml:para>This is an alias of the Backlog parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>*</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Team -->
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
        <maml:name>Team</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeam (if any). For more details, see the Get-TfsTeam cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Organization</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          <maml:para>This is an alias of the Collection parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Server -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Server</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeam (if any). For more details, see the Get-TfsTeam cmdlet. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: BacklogLevelConfiguration -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.TeamFoundation.Work.WebApi.BacklogLevelConfiguration</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/Team/Backlog/Get-TfsTeamBacklogLevel</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Get-TfsTeamBoard -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Team.Board">
    <command:details>
      <command:name>Get-TfsTeamBoard</command:name>
      <command:verb>Get</command:verb>
      <command:noun>TfsTeamBoard</command:noun>
      <maml:description>
        <maml:para>Gets one or more team boards. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Get-TfsTeamBoard</maml:name>
        <!-- Parameter: Board -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name">
          <maml:name>Board</maml:name>
          <maml:description>
            <maml:para>Specifies the board name. Wildcards are supported. When omitted, returns all boards in the given team. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>*</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Team -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
          <maml:name>Team</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeam (if any). For more details, see the Get-TfsTeam cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Board -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name">
        <maml:name>Board</maml:name>
        <maml:description>
          <maml:para>Specifies the board name. Wildcards are supported. When omitted, returns all boards in the given team. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>*</dev:defaultValue>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name">
        <maml:name>Name</maml:name>
        <maml:description>
          <maml:para>Specifies the board name. Wildcards are supported. When omitted, returns all boards in the given team. </maml:para>
          <maml:para>This is an alias of the Board parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>*</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Team -->
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
        <maml:name>Team</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeam (if any). For more details, see the Get-TfsTeam cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Organization</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          <maml:para>This is an alias of the Collection parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Server -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Server</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeam (if any). For more details, see the Get-TfsTeam cmdlet. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: Board -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.TeamFoundation.Work.WebApi.Board</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/Team/Board/Get-TfsTeamBoard</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Get-TfsTeamBoardCardRule -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Team.Board">
    <command:details>
      <command:name>Get-TfsTeamBoardCardRule</command:name>
      <command:verb>Get</command:verb>
      <command:noun>TfsTeamBoardCardRule</command:noun>
      <maml:description>
        <maml:para>Gets one or more team board card rules. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Get-TfsTeamBoardCardRule</maml:name>
        <!-- Parameter: Rule -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="0">
          <maml:name>Rule</maml:name>
          <maml:description>
            <maml:para>Specifies the rule name. Wildcards are supported. When omitted, returns all card rules in the given board. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>*</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Board -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
          <maml:name>Board</maml:name>
          <maml:description>
            <maml:para>Specifies the board name. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: RuleType -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>RuleType</maml:name>
          <maml:description>
            <maml:para>Specifies the kind of rule to return. When omitted, returns both rule types (card color and tag color). </maml:para>
            <maml:para>Possible values: CardColor, TagColor, All</maml:para>
          </maml:description>
          <command:parameterValue required="true">CardRuleType</command:parameterValue>
          <dev:type>
            <maml:name>TfsCmdlets.CardRuleType</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>All</dev:defaultValue>
          <command:parameterValueGroup>
            <command:parameterValue required="false" variableLength="false">CardColor</command:parameterValue>
            <command:parameterValue required="false" variableLength="false">TagColor</command:parameterValue>
            <command:parameterValue required="false" variableLength="false">All</command:parameterValue>
          </command:parameterValueGroup>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Team -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Team</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeam (if any). For more details, see the Get-TfsTeam cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Rule -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0">
        <maml:name>Rule</maml:name>
        <maml:description>
          <maml:para>Specifies the rule name. Wildcards are supported. When omitted, returns all card rules in the given board. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>*</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: RuleType -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>RuleType</maml:name>
        <maml:description>
          <maml:para>Specifies the kind of rule to return. When omitted, returns both rule types (card color and tag color). </maml:para>
          <maml:para>Possible values: CardColor, TagColor, All</maml:para>
        </maml:description>
        <command:parameterValue required="true">CardRuleType</command:parameterValue>
        <dev:type>
          <maml:name>TfsCmdlets.CardRuleType</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>All</dev:defaultValue>
        <command:parameterValueGroup>
          <command:parameterValue required="false" variableLength="false">CardColor</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">TagColor</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">All</command:parameterValue>
        </command:parameterValueGroup>
      </command:parameter>
      <!-- Parameter: Board -->
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
        <maml:name>Board</maml:name>
        <maml:description>
          <maml:para>Specifies the board name. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Team -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Team</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeam (if any). For more details, see the Get-TfsTeam cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Organization</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          <maml:para>This is an alias of the Collection parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Server -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Server</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the board name. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: Rule -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.TeamFoundation.Work.WebApi.Rule</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/Team/Board/Get-TfsTeamBoardCardRule</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Set-TfsTeamBoardCardRule -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Team.Board">
    <command:details>
      <command:name>Set-TfsTeamBoardCardRule</command:name>
      <command:verb>Set</command:verb>
      <command:noun>TfsTeamBoardCardRule</command:noun>
      <maml:description>
        <maml:para>Set the card rule settings of the specified backlog board. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: Bulk set -->
      <command:syntaxItem tfscmdlets:parameterSet="Bulk set">
        <maml:name>Set-TfsTeamBoardCardRule</maml:name>
        <!-- Parameter: WebApiBoard -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0">
          <maml:name>WebApiBoard</maml:name>
          <maml:description>
            <maml:para>Specifies the board name. Wildcards are supported. When omitted, returns card rules for all boards in the given team. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Passthru -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Passthru</maml:name>
          <maml:description>
            <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Rules -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Rules</maml:name>
          <command:parameterValue required="true">BoardCardRuleSettings</command:parameterValue>
          <dev:type>
            <maml:name>Microsoft.TeamFoundation.Work.WebApi.BoardCardRuleSettings</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Team -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Team</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeam (if any). For more details, see the Get-TfsTeam cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
      <!-- Parameter Set: Set individual rules -->
      <command:syntaxItem tfscmdlets:parameterSet="Set individual rules">
        <maml:name>Set-TfsTeamBoardCardRule</maml:name>
        <!-- Parameter: WebApiBoard -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0">
          <maml:name>WebApiBoard</maml:name>
          <maml:description>
            <maml:para>Specifies the board name. Wildcards are supported. When omitted, returns card rules for all boards in the given team. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: CardStyleRuleFilter -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>CardStyleRuleFilter</maml:name>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: CardStyleRuleName -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>CardStyleRuleName</maml:name>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: CardStyleRuleSettings -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>CardStyleRuleSettings</maml:name>
          <command:parameterValue required="true">Hashtable</command:parameterValue>
          <dev:type>
            <maml:name>System.Collections.Hashtable</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Passthru -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Passthru</maml:name>
          <maml:description>
            <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: TagStyleRuleFilter -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>TagStyleRuleFilter</maml:name>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: TagStyleRuleName -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>TagStyleRuleName</maml:name>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: TagStyleRuleSettings -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>TagStyleRuleSettings</maml:name>
          <command:parameterValue required="true">Hashtable</command:parameterValue>
          <dev:type>
            <maml:name>System.Collections.Hashtable</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Team -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Team</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeam (if any). For more details, see the Get-TfsTeam cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: WebApiBoard -->
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0">
        <maml:name>WebApiBoard</maml:name>
        <maml:description>
          <maml:para>Specifies the board name. Wildcards are supported. When omitted, returns card rules for all boards in the given team. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Rules -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Rules</maml:name>
        <command:parameterValue required="true">BoardCardRuleSettings</command:parameterValue>
        <dev:type>
          <maml:name>Microsoft.TeamFoundation.Work.WebApi.BoardCardRuleSettings</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: CardStyleRuleName -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>CardStyleRuleName</maml:name>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: CardStyleRuleFilter -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>CardStyleRuleFilter</maml:name>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: CardStyleRuleSettings -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>CardStyleRuleSettings</maml:name>
        <command:parameterValue required="true">Hashtable</command:parameterValue>
        <dev:type>
          <maml:name>System.Collections.Hashtable</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: TagStyleRuleName -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>TagStyleRuleName</maml:name>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: TagStyleRuleFilter -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>TagStyleRuleFilter</maml:name>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: TagStyleRuleSettings -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>TagStyleRuleSettings</maml:name>
        <command:parameterValue required="true">Hashtable</command:parameterValue>
        <dev:type>
          <maml:name>System.Collections.Hashtable</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Passthru -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Passthru</maml:name>
        <maml:description>
          <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Team -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Team</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeam (if any). For more details, see the Get-TfsTeam cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Organization</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          <maml:para>This is an alias of the Collection parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Server -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Server</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the board name. Wildcards are supported. When omitted, returns card rules for all boards in the given team. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: BoardCardRuleSettings -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.TeamFoundation.Work.WebApi.BoardCardRuleSettings</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/Team/Board/Set-TfsTeamBoardCardRule</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Add-TfsTeamMember -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Team.TeamMember">
    <command:details>
      <command:name>Add-TfsTeamMember</command:name>
      <command:verb>Add</command:verb>
      <command:noun>TfsTeamMember</command:noun>
      <maml:description>
        <maml:para>Adds new members to a team. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Add-TfsTeamMember</maml:name>
        <!-- Parameter: Member -->
        <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0">
          <maml:name>Member</maml:name>
          <maml:description>
            <maml:para>Specifies the member (user or group) to add to the given team. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Team -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Team</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeam (if any). For more details, see the Get-TfsTeam cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Member -->
      <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0">
        <maml:name>Member</maml:name>
        <maml:description>
          <maml:para>Specifies the member (user or group) to add to the given team. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Team -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Team</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeam (if any). For more details, see the Get-TfsTeam cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Organization</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          <maml:para>This is an alias of the Collection parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Server -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Server</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the member (user or group) to add to the given team. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: Identity -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.VisualStudio.Services.Identity.Identity</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/Team/TeamMember/Add-TfsTeamMember</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Get-TfsTeamMember -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Team.TeamMember">
    <command:details>
      <command:name>Get-TfsTeamMember</command:name>
      <command:verb>Get</command:verb>
      <command:noun>TfsTeamMember</command:noun>
      <maml:description>
        <maml:para>Gets the members of a team. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Get-TfsTeamMember</maml:name>
        <!-- Parameter: Member -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="1">
          <maml:name>Member</maml:name>
          <maml:description>
            <maml:para>Specifies the member (user or group) to get from the given team. Wildcards are supported. When omitted, all team members are returned. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>*</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Recurse -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Recurse</maml:name>
          <maml:description>
            <maml:para>Recursively expands all member groups, returning the users and/or groups contained in them </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Team -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
          <maml:name>Team</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeam (if any). For more details, see the Get-TfsTeam cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Member -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="1">
        <maml:name>Member</maml:name>
        <maml:description>
          <maml:para>Specifies the member (user or group) to get from the given team. Wildcards are supported. When omitted, all team members are returned. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>*</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Recurse -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Recurse</maml:name>
        <maml:description>
          <maml:para>Recursively expands all member groups, returning the users and/or groups contained in them </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Team -->
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
        <maml:name>Team</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeam (if any). For more details, see the Get-TfsTeam cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Organization</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          <maml:para>This is an alias of the Collection parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Server -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Server</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeam (if any). For more details, see the Get-TfsTeam cmdlet. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: Identity -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.VisualStudio.Services.Identity.Identity</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/Team/TeamMember/Get-TfsTeamMember</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Remove-TfsTeamMember -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Team.TeamMember">
    <command:details>
      <command:name>Remove-TfsTeamMember</command:name>
      <command:verb>Remove</command:verb>
      <command:noun>TfsTeamMember</command:noun>
      <maml:description>
        <maml:para>Removes a member from a team. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Remove-TfsTeamMember</maml:name>
        <!-- Parameter: Member -->
        <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0">
          <maml:name>Member</maml:name>
          <maml:description>
            <maml:para>Specifies the member (user or group) to remove from the given team. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Team -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Team</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeam (if any). For more details, see the Get-TfsTeam cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Member -->
      <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0">
        <maml:name>Member</maml:name>
        <maml:description>
          <maml:para>Specifies the member (user or group) to remove from the given team. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Team -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Team</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeam (if any). For more details, see the Get-TfsTeam cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Organization</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          <maml:para>This is an alias of the Collection parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Server -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Server</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the member (user or group) to remove from the given team. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: Identity -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.VisualStudio.Services.Identity.Identity</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/Team/TeamMember/Remove-TfsTeamMember</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Connect-TfsTeamProject -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="TeamProject">
    <command:details>
      <command:name>Connect-TfsTeamProject</command:name>
      <command:verb>Connect</command:verb>
      <command:noun>TfsTeamProject</command:noun>
      <maml:description>
        <maml:para>Connects to a Team Project. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: Cached credentials -->
      <command:syntaxItem tfscmdlets:parameterSet="Cached credentials">
        <maml:name>Connect-TfsTeamProject</maml:name>
        <!-- Parameter: Project -->
        <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Cached -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
          <maml:name>Cached</maml:name>
          <maml:description>
            <maml:para>Specifies that cached (default) credentials should be used when possible/available. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named" aliases="Organization">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Passthru -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Passthru</maml:name>
          <maml:description>
            <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
      <!-- Parameter Set: User name and password -->
      <command:syntaxItem tfscmdlets:parameterSet="User name and password">
        <maml:name>Connect-TfsTeamProject</maml:name>
        <!-- Parameter: Project -->
        <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Password -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
          <maml:name>Password</maml:name>
          <maml:description>
            <maml:para>Specifies a password for authentication modes (such as Basic) that support username/password-based credentials. Must be used in conjunction with the -UserName argument </maml:para>
          </maml:description>
          <command:parameterValue required="true">SecureString</command:parameterValue>
          <dev:type>
            <maml:name>System.Security.SecureString</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: UserName -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
          <maml:name>UserName</maml:name>
          <maml:description>
            <maml:para>Specifies a user name for authentication modes (such as Basic) that support username/password-based credentials. Must be used in conjunction with the -Password argument </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named" aliases="Organization">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Passthru -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Passthru</maml:name>
          <maml:description>
            <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
      <!-- Parameter Set: Credential object -->
      <command:syntaxItem tfscmdlets:parameterSet="Credential object">
        <maml:name>Connect-TfsTeamProject</maml:name>
        <!-- Parameter: Project -->
        <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Credential -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
          <maml:name>Credential</maml:name>
          <maml:description>
            <maml:para>Specifies a user account that has permission to perform this action. To provide a user name and password, a Personal Access Token, and/or to open a input dialog to enter your credentials, call Get-TfsCredential with the appropriate arguments and pass its return to this argument. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named" aliases="Organization">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Passthru -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Passthru</maml:name>
          <maml:description>
            <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
      <!-- Parameter Set: Personal Access Token -->
      <command:syntaxItem tfscmdlets:parameterSet="Personal Access Token">
        <maml:name>Connect-TfsTeamProject</maml:name>
        <!-- Parameter: Project -->
        <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: PersonalAccessToken -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="named" aliases="Pat">
          <maml:name>PersonalAccessToken</maml:name>
          <maml:description>
            <maml:para>Specifies a personal access token, used as an alternate credential, to authenticate to Azure DevOps </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named" aliases="Organization">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Passthru -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Passthru</maml:name>
          <maml:description>
            <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
      <!-- Parameter Set: Prompt for credential -->
      <command:syntaxItem tfscmdlets:parameterSet="Prompt for credential">
        <maml:name>Connect-TfsTeamProject</maml:name>
        <!-- Parameter: Project -->
        <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named" aliases="Organization">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Interactive -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Interactive</maml:name>
          <maml:description>
            <maml:para>Prompts for user credentials. Can be used for any Team Foundation Server or Azure DevOps account - the proper login dialog is automatically selected. Should only be used in an interactive PowerShell session (i.e., a PowerShell terminal window), never in an unattended script (such as those executed during an automated build). Currently it is only supported in Windows PowerShell. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Passthru -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Passthru</maml:name>
          <maml:description>
            <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Project -->
      <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Passthru -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Passthru</maml:name>
        <maml:description>
          <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named" aliases="Organization">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named" aliases="Organization">
        <maml:name>Organization</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          <maml:para>This is an alias of the Collection parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Server -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Server</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Cached -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
        <maml:name>Cached</maml:name>
        <maml:description>
          <maml:para>Specifies that cached (default) credentials should be used when possible/available. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: UserName -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
        <maml:name>UserName</maml:name>
        <maml:description>
          <maml:para>Specifies a user name for authentication modes (such as Basic) that support username/password-based credentials. Must be used in conjunction with the -Password argument </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Password -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
        <maml:name>Password</maml:name>
        <maml:description>
          <maml:para>Specifies a password for authentication modes (such as Basic) that support username/password-based credentials. Must be used in conjunction with the -UserName argument </maml:para>
        </maml:description>
        <command:parameterValue required="true">SecureString</command:parameterValue>
        <dev:type>
          <maml:name>System.Security.SecureString</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Credential -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
        <maml:name>Credential</maml:name>
        <maml:description>
          <maml:para>Specifies a user account that has permission to perform this action. To provide a user name and password, a Personal Access Token, and/or to open a input dialog to enter your credentials, call Get-TfsCredential with the appropriate arguments and pass its return to this argument. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: PersonalAccessToken -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="named" aliases="Pat">
        <maml:name>PersonalAccessToken</maml:name>
        <maml:description>
          <maml:para>Specifies a personal access token, used as an alternate credential, to authenticate to Azure DevOps </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="true" globbing="false" pipelineInput="false" position="named" aliases="Pat">
        <maml:name>Pat</maml:name>
        <maml:description>
          <maml:para>Specifies a personal access token, used as an alternate credential, to authenticate to Azure DevOps </maml:para>
          <maml:para>This is an alias of the PersonalAccessToken parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Interactive -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Interactive</maml:name>
        <maml:description>
          <maml:para>Prompts for user credentials. Can be used for any Team Foundation Server or Azure DevOps account - the proper login dialog is automatically selected. Should only be used in an interactive PowerShell session (i.e., a PowerShell terminal window), never in an unattended script (such as those executed during an automated build). Currently it is only supported in Windows PowerShell. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. </maml:para>
        </maml:description>
      </command:inputType>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: TeamProject -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.TeamFoundation.Core.WebApi.TeamProject</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/TeamProject/Connect-TfsTeamProject</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Disconnect-TfsTeamProject -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="TeamProject">
    <command:details>
      <command:name>Disconnect-TfsTeamProject</command:name>
      <command:verb>Disconnect</command:verb>
      <command:noun>TfsTeamProject</command:noun>
      <maml:description>
        <maml:para>Disconnects from the currently connected team project. </maml:para>
      </maml:description>
    </command:details>
    <maml:description>
      <maml:para>The Disconnect-TfsTeamProject cmdlet removes the connection previously set by its counterpart Connect-TfsTeamProject. Therefore, cmdlets relying on a "default team project" as provided by "Get-TfsTeamProject -Current" will no longer work after a call to this cmdlet, unless their -Project argument is provided or a new call to Connect-TfsTeamProject is made. </maml:para>
    </maml:description>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Disconnect-TfsTeamProject</maml:name>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters />
    <command:inputTypes />
    <command:returnValues />
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/TeamProject/Disconnect-TfsTeamProject</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Get-TfsTeamProject -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="TeamProject">
    <command:details>
      <command:name>Get-TfsTeamProject</command:name>
      <command:verb>Get</command:verb>
      <command:noun>TfsTeamProject</command:noun>
      <maml:description>
        <maml:para>Gets information about one or more team projects. </maml:para>
      </maml:description>
    </command:details>
    <maml:description>
      <maml:para>The Get-TfsTeamProject cmdlets gets one or more Team Project objects (an instance of Microsoft.TeamFoundation.Core.WebApi.TeamProject) from the supplied Team Project Collection. </maml:para>
    </maml:description>
    <command:syntax>
      <!-- Parameter Set: Get by project -->
      <command:syntaxItem tfscmdlets:parameterSet="Get by project">
        <maml:name>Get-TfsTeamProject</maml:name>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="0">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of a Team Project. Wildcards are supported. When omitted, all team projects in the supplied collection are returned. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>*</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named" aliases="Organization">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Deleted -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Deleted</maml:name>
          <maml:description>
            <maml:para>Lists deleted team projects present in the "recycle bin" </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: IncludeDetails -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>IncludeDetails</maml:name>
          <maml:description>
            <maml:para>Includes details about the team projects, such as the process template name and other properties. Specifying this argument signficantly increases the time it takes to complete the operation. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Process -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Process</maml:name>
          <maml:description>
            <maml:para>Returns only those team projects matching the specified process template(s). Wildcards are supported. When omitted returns all team projects, regardless of process template. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string[]</command:parameterValue>
          <dev:type>
            <maml:name>System.String[]</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
      <!-- Parameter Set: Cached credentials -->
      <command:syntaxItem tfscmdlets:parameterSet="Cached credentials">
        <maml:name>Get-TfsTeamProject</maml:name>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="0">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of a Team Project. Wildcards are supported. When omitted, all team projects in the supplied collection are returned. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>*</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Cached -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
          <maml:name>Cached</maml:name>
          <maml:description>
            <maml:para>Specifies that cached (default) credentials should be used when possible/available. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named" aliases="Organization">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Deleted -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Deleted</maml:name>
          <maml:description>
            <maml:para>Lists deleted team projects present in the "recycle bin" </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: IncludeDetails -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>IncludeDetails</maml:name>
          <maml:description>
            <maml:para>Includes details about the team projects, such as the process template name and other properties. Specifying this argument signficantly increases the time it takes to complete the operation. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Process -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Process</maml:name>
          <maml:description>
            <maml:para>Returns only those team projects matching the specified process template(s). Wildcards are supported. When omitted returns all team projects, regardless of process template. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string[]</command:parameterValue>
          <dev:type>
            <maml:name>System.String[]</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
      <!-- Parameter Set: User name and password -->
      <command:syntaxItem tfscmdlets:parameterSet="User name and password">
        <maml:name>Get-TfsTeamProject</maml:name>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="0">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of a Team Project. Wildcards are supported. When omitted, all team projects in the supplied collection are returned. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>*</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Password -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
          <maml:name>Password</maml:name>
          <maml:description>
            <maml:para>Specifies a password for authentication modes (such as Basic) that support username/password-based credentials. Must be used in conjunction with the -UserName argument </maml:para>
          </maml:description>
          <command:parameterValue required="true">SecureString</command:parameterValue>
          <dev:type>
            <maml:name>System.Security.SecureString</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: UserName -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
          <maml:name>UserName</maml:name>
          <maml:description>
            <maml:para>Specifies a user name for authentication modes (such as Basic) that support username/password-based credentials. Must be used in conjunction with the -Password argument </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named" aliases="Organization">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Deleted -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Deleted</maml:name>
          <maml:description>
            <maml:para>Lists deleted team projects present in the "recycle bin" </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: IncludeDetails -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>IncludeDetails</maml:name>
          <maml:description>
            <maml:para>Includes details about the team projects, such as the process template name and other properties. Specifying this argument signficantly increases the time it takes to complete the operation. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Process -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Process</maml:name>
          <maml:description>
            <maml:para>Returns only those team projects matching the specified process template(s). Wildcards are supported. When omitted returns all team projects, regardless of process template. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string[]</command:parameterValue>
          <dev:type>
            <maml:name>System.String[]</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
      <!-- Parameter Set: Credential object -->
      <command:syntaxItem tfscmdlets:parameterSet="Credential object">
        <maml:name>Get-TfsTeamProject</maml:name>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="0">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of a Team Project. Wildcards are supported. When omitted, all team projects in the supplied collection are returned. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>*</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Credential -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
          <maml:name>Credential</maml:name>
          <maml:description>
            <maml:para>Specifies a user account that has permission to perform this action. To provide a user name and password, a Personal Access Token, and/or to open a input dialog to enter your credentials, call Get-TfsCredential with the appropriate arguments and pass its return to this argument. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named" aliases="Organization">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Deleted -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Deleted</maml:name>
          <maml:description>
            <maml:para>Lists deleted team projects present in the "recycle bin" </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: IncludeDetails -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>IncludeDetails</maml:name>
          <maml:description>
            <maml:para>Includes details about the team projects, such as the process template name and other properties. Specifying this argument signficantly increases the time it takes to complete the operation. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Process -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Process</maml:name>
          <maml:description>
            <maml:para>Returns only those team projects matching the specified process template(s). Wildcards are supported. When omitted returns all team projects, regardless of process template. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string[]</command:parameterValue>
          <dev:type>
            <maml:name>System.String[]</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
      <!-- Parameter Set: Personal Access Token -->
      <command:syntaxItem tfscmdlets:parameterSet="Personal Access Token">
        <maml:name>Get-TfsTeamProject</maml:name>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="0">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of a Team Project. Wildcards are supported. When omitted, all team projects in the supplied collection are returned. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>*</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: PersonalAccessToken -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="named" aliases="Pat">
          <maml:name>PersonalAccessToken</maml:name>
          <maml:description>
            <maml:para>Specifies a personal access token, used as an alternate credential, to authenticate to Azure DevOps </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named" aliases="Organization">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Deleted -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Deleted</maml:name>
          <maml:description>
            <maml:para>Lists deleted team projects present in the "recycle bin" </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: IncludeDetails -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>IncludeDetails</maml:name>
          <maml:description>
            <maml:para>Includes details about the team projects, such as the process template name and other properties. Specifying this argument signficantly increases the time it takes to complete the operation. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Process -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Process</maml:name>
          <maml:description>
            <maml:para>Returns only those team projects matching the specified process template(s). Wildcards are supported. When omitted returns all team projects, regardless of process template. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string[]</command:parameterValue>
          <dev:type>
            <maml:name>System.String[]</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
      <!-- Parameter Set: Prompt for credential -->
      <command:syntaxItem tfscmdlets:parameterSet="Prompt for credential">
        <maml:name>Get-TfsTeamProject</maml:name>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="0">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of a Team Project. Wildcards are supported. When omitted, all team projects in the supplied collection are returned. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>*</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named" aliases="Organization">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Deleted -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Deleted</maml:name>
          <maml:description>
            <maml:para>Lists deleted team projects present in the "recycle bin" </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: IncludeDetails -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>IncludeDetails</maml:name>
          <maml:description>
            <maml:para>Includes details about the team projects, such as the process template name and other properties. Specifying this argument signficantly increases the time it takes to complete the operation. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Interactive -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Interactive</maml:name>
          <maml:description>
            <maml:para>Prompts for user credentials. Can be used for any Team Foundation Server or Azure DevOps account - the proper login dialog is automatically selected. Should only be used in an interactive PowerShell session (i.e., a PowerShell terminal window), never in an unattended script (such as those executed during an automated build). Currently it is only supported in Windows PowerShell. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Process -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Process</maml:name>
          <maml:description>
            <maml:para>Returns only those team projects matching the specified process template(s). Wildcards are supported. When omitted returns all team projects, regardless of process template. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string[]</command:parameterValue>
          <dev:type>
            <maml:name>System.String[]</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
      <!-- Parameter Set: Get current -->
      <command:syntaxItem tfscmdlets:parameterSet="Get current">
        <maml:name>Get-TfsTeamProject</maml:name>
        <!-- Parameter: Current -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
          <maml:name>Current</maml:name>
          <maml:description>
            <maml:para>Returns the team project specified in the last call to Connect-TfsTeamProject (i.e. the "current" team project) </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: IncludeDetails -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>IncludeDetails</maml:name>
          <maml:description>
            <maml:para>Includes details about the team projects, such as the process template name and other properties. Specifying this argument signficantly increases the time it takes to complete the operation. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Process -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Process</maml:name>
          <maml:description>
            <maml:para>Returns only those team projects matching the specified process template(s). Wildcards are supported. When omitted returns all team projects, regardless of process template. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string[]</command:parameterValue>
          <dev:type>
            <maml:name>System.String[]</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of a Team Project. Wildcards are supported. When omitted, all team projects in the supplied collection are returned. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>*</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Deleted -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Deleted</maml:name>
        <maml:description>
          <maml:para>Lists deleted team projects present in the "recycle bin" </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Process -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Process</maml:name>
        <maml:description>
          <maml:para>Returns only those team projects matching the specified process template(s). Wildcards are supported. When omitted returns all team projects, regardless of process template. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string[]</command:parameterValue>
        <dev:type>
          <maml:name>System.String[]</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: IncludeDetails -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>IncludeDetails</maml:name>
        <maml:description>
          <maml:para>Includes details about the team projects, such as the process template name and other properties. Specifying this argument signficantly increases the time it takes to complete the operation. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Current -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
        <maml:name>Current</maml:name>
        <maml:description>
          <maml:para>Returns the team project specified in the last call to Connect-TfsTeamProject (i.e. the "current" team project) </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named" aliases="Organization">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named" aliases="Organization">
        <maml:name>Organization</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          <maml:para>This is an alias of the Collection parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Server -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Server</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Cached -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
        <maml:name>Cached</maml:name>
        <maml:description>
          <maml:para>Specifies that cached (default) credentials should be used when possible/available. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: UserName -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
        <maml:name>UserName</maml:name>
        <maml:description>
          <maml:para>Specifies a user name for authentication modes (such as Basic) that support username/password-based credentials. Must be used in conjunction with the -Password argument </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Password -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
        <maml:name>Password</maml:name>
        <maml:description>
          <maml:para>Specifies a password for authentication modes (such as Basic) that support username/password-based credentials. Must be used in conjunction with the -UserName argument </maml:para>
        </maml:description>
        <command:parameterValue required="true">SecureString</command:parameterValue>
        <dev:type>
          <maml:name>System.Security.SecureString</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Credential -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
        <maml:name>Credential</maml:name>
        <maml:description>
          <maml:para>Specifies a user account that has permission to perform this action. To provide a user name and password, a Personal Access Token, and/or to open a input dialog to enter your credentials, call Get-TfsCredential with the appropriate arguments and pass its return to this argument. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: PersonalAccessToken -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="named" aliases="Pat">
        <maml:name>PersonalAccessToken</maml:name>
        <maml:description>
          <maml:para>Specifies a personal access token, used as an alternate credential, to authenticate to Azure DevOps </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="true" globbing="false" pipelineInput="false" position="named" aliases="Pat">
        <maml:name>Pat</maml:name>
        <maml:description>
          <maml:para>Specifies a personal access token, used as an alternate credential, to authenticate to Azure DevOps </maml:para>
          <maml:para>This is an alias of the PersonalAccessToken parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Interactive -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Interactive</maml:name>
        <maml:description>
          <maml:para>Prompts for user credentials. Can be used for any Team Foundation Server or Azure DevOps account - the proper login dialog is automatically selected. Should only be used in an interactive PowerShell session (i.e., a PowerShell terminal window), never in an unattended script (such as those executed during an automated build). Currently it is only supported in Windows PowerShell. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: TeamProject -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.TeamFoundation.Core.WebApi.TeamProject</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/TeamProject/Get-TfsTeamProject</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: New-TfsTeamProject -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="TeamProject">
    <command:details>
      <command:name>New-TfsTeamProject</command:name>
      <command:verb>New</command:verb>
      <command:noun>TfsTeamProject</command:noun>
      <maml:description>
        <maml:para>Creates a new team project. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>New-TfsTeamProject</maml:name>
        <!-- Parameter: Project -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="0">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the new team project. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string[]</command:parameterValue>
          <dev:type>
            <maml:name>System.String[]</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Description -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Description</maml:name>
          <maml:description>
            <maml:para>Specifies a description for the new team project. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Passthru -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Passthru</maml:name>
          <maml:description>
            <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: ProcessTemplate -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>ProcessTemplate</maml:name>
          <maml:description>
            <maml:para>Specifies the process template on which the new team project is based. Supported values are the process name or an instance of the Microsoft.TeamFoundation.Core.WebApi.Process class. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: SourceControl -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>SourceControl</maml:name>
          <maml:description>
            <maml:para>Specifies the source control type to be provisioned initially with the team project. Supported types are "Git" and "Tfvc". </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>Git</dev:defaultValue>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Project -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="0">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the new team project. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string[]</command:parameterValue>
        <dev:type>
          <maml:name>System.String[]</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Description -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Description</maml:name>
        <maml:description>
          <maml:para>Specifies a description for the new team project. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: SourceControl -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>SourceControl</maml:name>
        <maml:description>
          <maml:para>Specifies the source control type to be provisioned initially with the team project. Supported types are "Git" and "Tfvc". </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>Git</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: ProcessTemplate -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>ProcessTemplate</maml:name>
        <maml:description>
          <maml:para>Specifies the process template on which the new team project is based. Supported values are the process name or an instance of the Microsoft.TeamFoundation.Core.WebApi.Process class. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Passthru -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Passthru</maml:name>
        <maml:description>
          <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Organization</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          <maml:para>This is an alias of the Collection parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Server -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Server</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes />
    <command:returnValues>
      <!-- OutputType: TeamProject -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.TeamFoundation.Core.WebApi.TeamProject</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/TeamProject/New-TfsTeamProject</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Remove-TfsTeamProject -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="TeamProject">
    <command:details>
      <command:name>Remove-TfsTeamProject</command:name>
      <command:verb>Remove</command:verb>
      <command:noun>TfsTeamProject</command:noun>
      <maml:description>
        <maml:para>Deletes one or more team projects. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Remove-TfsTeamProject</maml:name>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of a Team Project to delete. Wildcards are supported. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Force -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Force</maml:name>
          <maml:description>
            <maml:para>Forces the exclusion of the item. When omitted, the command prompts for confirmation prior to deleting the item. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Hard -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Hard</maml:name>
          <maml:description>
            <maml:para>Deletes the team project permanently. When omitted, the team project is moved to a "recycle bin" and can be recovered either via UI or by using Undo-TfsTeamProjectRemoval. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue, ByPropertyName)" position="0">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of a Team Project to delete. Wildcards are supported. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Hard -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Hard</maml:name>
        <maml:description>
          <maml:para>Deletes the team project permanently. When omitted, the team project is moved to a "recycle bin" and can be recovered either via UI or by using Undo-TfsTeamProjectRemoval. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Force -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Force</maml:name>
        <maml:description>
          <maml:para>Forces the exclusion of the item. When omitted, the command prompts for confirmation prior to deleting the item. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Organization</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          <maml:para>This is an alias of the Collection parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Server -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Server</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the name of a Team Project to delete. Wildcards are supported. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues />
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/TeamProject/Remove-TfsTeamProject</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Rename-TfsTeamProject -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="TeamProject">
    <command:details>
      <command:name>Rename-TfsTeamProject</command:name>
      <command:verb>Rename</command:verb>
      <command:noun>TfsTeamProject</command:noun>
      <maml:description>
        <maml:para>Renames a team project. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Rename-TfsTeamProject</maml:name>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of a Team Project to rename. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: NewName -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="1">
          <maml:name>NewName</maml:name>
          <maml:description>
            <maml:para>Specifies the new name of the item. Enter only a name - i.e., for items that support paths, do not enter a path and name. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Force -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Force</maml:name>
          <maml:description>
            <maml:para>Forces the renaming of the team project. When omitted, the command prompts for confirmation prior to renaming the team project. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of a Team Project to rename. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Force -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Force</maml:name>
        <maml:description>
          <maml:para>Forces the renaming of the team project. When omitted, the command prompts for confirmation prior to renaming the team project. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: NewName -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="1">
        <maml:name>NewName</maml:name>
        <maml:description>
          <maml:para>Specifies the new name of the item. Enter only a name - i.e., for items that support paths, do not enter a path and name. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Organization</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          <maml:para>This is an alias of the Collection parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Server -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Server</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the name of a Team Project to rename. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues />
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/TeamProject/Rename-TfsTeamProject</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Set-TfsTeamProject -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="TeamProject">
    <command:details>
      <command:name>Set-TfsTeamProject</command:name>
      <command:verb>Set</command:verb>
      <command:noun>TfsTeamProject</command:noun>
      <maml:description>
        <maml:para>Changes the details of a team project. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Set-TfsTeamProject</maml:name>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="0">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: AvatarImage -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>AvatarImage</maml:name>
          <maml:description>
            <maml:para>Specifies the name of a local image file to be uploaded and used as the team project icon ("avatar"). To remove a previously set image, pass either $null or a blank string ('') to this argument. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: 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 team project. To remove a previously set description, pass a blank string ('') to this argument. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Passthru -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Passthru</maml:name>
          <maml:description>
            <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: 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 team project. To remove a previously set description, pass a blank string ('') 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: 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 either $null or a blank string ('') to this argument. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Passthru -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Passthru</maml:name>
        <maml:description>
          <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Organization</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          <maml:para>This is an alias of the Collection parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Server -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Server</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes />
    <command:returnValues>
      <!-- OutputType: TeamProject -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.TeamFoundation.Core.WebApi.TeamProject</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/TeamProject/Set-TfsTeamProject</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Export-TfsTeamProjectAvatar -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="TeamProject.Avatar">
    <command:details>
      <command:name>Export-TfsTeamProjectAvatar</command:name>
      <command:verb>Export</command:verb>
      <command:noun>TfsTeamProjectAvatar</command:noun>
      <maml:description>
        <maml:para>Exports the current avatar (image) of the specified team project. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Export-TfsTeamProjectAvatar</maml:name>
        <!-- Parameter: Path -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="0">
          <maml:name>Path</maml:name>
          <maml:description>
            <maml:para>Specifies the path of the file where the avatar image will be saved. When omitted, the image will be saved to the current directory as &lt;team-project-name&gt;.png. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Force -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Force</maml:name>
          <maml:description>
            <maml:para>Allows the cmdlet to overwrite an existing file in the destination folder. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Path -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0">
        <maml:name>Path</maml:name>
        <maml:description>
          <maml:para>Specifies the path of the file where the avatar image will be saved. When omitted, the image will be saved to the current directory as &lt;team-project-name&gt;.png. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Force -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Force</maml:name>
        <maml:description>
          <maml:para>Allows the cmdlet to overwrite an existing file in the destination folder. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Organization</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          <maml:para>This is an alias of the Collection parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Server -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Server</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues />
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/TeamProject/Avatar/Export-TfsTeamProjectAvatar</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Import-TfsTeamProjectAvatar -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="TeamProject.Avatar">
    <command:details>
      <command:name>Import-TfsTeamProjectAvatar</command:name>
      <command:verb>Import</command:verb>
      <command:noun>TfsTeamProjectAvatar</command:noun>
      <maml:description>
        <maml:para>Imports and sets a new team project avatar (image). </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Import-TfsTeamProjectAvatar</maml:name>
        <!-- Parameter: Path -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="0">
          <maml:name>Path</maml:name>
          <maml:description>
            <maml:para>Specifies the path of the image file to import. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Path -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="0">
        <maml:name>Path</maml:name>
        <maml:description>
          <maml:para>Specifies the path of the image file to import. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Organization</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          <maml:para>This is an alias of the Collection parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Server -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Server</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes />
    <command:returnValues />
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/TeamProject/Avatar/Import-TfsTeamProjectAvatar</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Remove-TfsTeamProjectAvatar -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="TeamProject.Avatar">
    <command:details>
      <command:name>Remove-TfsTeamProjectAvatar</command:name>
      <command:verb>Remove</command:verb>
      <command:noun>TfsTeamProjectAvatar</command:noun>
      <maml:description>
        <maml:para>Removes the team project avatar, resetting it to the default. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Remove-TfsTeamProjectAvatar</maml:name>
        <!-- Parameter: Project -->
        <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Project -->
      <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Organization</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          <maml:para>This is an alias of the Collection parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Server -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Server</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues />
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/TeamProject/Avatar/Remove-TfsTeamProjectAvatar</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Connect-TfsTeamProjectCollection -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="TeamProjectCollection">
    <command:details>
      <command:name>Connect-TfsTeamProjectCollection</command:name>
      <command:verb>Connect</command:verb>
      <command:noun>TfsTeamProjectCollection</command:noun>
      <maml:description>
        <maml:para>Connects to a TFS team project collection or Azure DevOps organization. </maml:para>
      </maml:description>
    </command:details>
    <maml:description>
      <maml:para>The Connect-TfsTeamProjectCollection cmdlet connects to a TFS Team Project Collection or Azure DevOps organization. </maml:para>
      <maml:para>That connection can be later reused by other TfsCmdlets commands until it's closed by a call to Disconnect-TfsTeamProjectCollection. </maml:para>
    </maml:description>
    <command:syntax>
      <!-- Parameter Set: Cached credentials -->
      <command:syntaxItem tfscmdlets:parameterSet="Cached credentials">
        <maml:name>Connect-TfsTeamProjectCollection</maml:name>
        <!-- Parameter: Collection -->
        <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Organization">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Cached -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
          <maml:name>Cached</maml:name>
          <maml:description>
            <maml:para>Specifies that cached (default) credentials should be used when possible/available. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Passthru -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Passthru</maml:name>
          <maml:description>
            <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
      <!-- Parameter Set: User name and password -->
      <command:syntaxItem tfscmdlets:parameterSet="User name and password">
        <maml:name>Connect-TfsTeamProjectCollection</maml:name>
        <!-- Parameter: Collection -->
        <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Organization">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Password -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
          <maml:name>Password</maml:name>
          <maml:description>
            <maml:para>Specifies a password for authentication modes (such as Basic) that support username/password-based credentials. Must be used in conjunction with the -UserName argument </maml:para>
          </maml:description>
          <command:parameterValue required="true">SecureString</command:parameterValue>
          <dev:type>
            <maml:name>System.Security.SecureString</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: UserName -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
          <maml:name>UserName</maml:name>
          <maml:description>
            <maml:para>Specifies a user name for authentication modes (such as Basic) that support username/password-based credentials. Must be used in conjunction with the -Password argument </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Passthru -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Passthru</maml:name>
          <maml:description>
            <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
      <!-- Parameter Set: Credential object -->
      <command:syntaxItem tfscmdlets:parameterSet="Credential object">
        <maml:name>Connect-TfsTeamProjectCollection</maml:name>
        <!-- Parameter: Collection -->
        <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Organization">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Credential -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
          <maml:name>Credential</maml:name>
          <maml:description>
            <maml:para>Specifies a user account that has permission to perform this action. To provide a user name and password, a Personal Access Token, and/or to open a input dialog to enter your credentials, call Get-TfsCredential with the appropriate arguments and pass its return to this argument. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Passthru -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Passthru</maml:name>
          <maml:description>
            <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
      <!-- Parameter Set: Personal Access Token -->
      <command:syntaxItem tfscmdlets:parameterSet="Personal Access Token">
        <maml:name>Connect-TfsTeamProjectCollection</maml:name>
        <!-- Parameter: Collection -->
        <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Organization">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: PersonalAccessToken -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="named" aliases="Pat">
          <maml:name>PersonalAccessToken</maml:name>
          <maml:description>
            <maml:para>Specifies a personal access token, used as an alternate credential, to authenticate to Azure DevOps </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Passthru -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Passthru</maml:name>
          <maml:description>
            <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
      <!-- Parameter Set: Prompt for credential -->
      <command:syntaxItem tfscmdlets:parameterSet="Prompt for credential">
        <maml:name>Connect-TfsTeamProjectCollection</maml:name>
        <!-- Parameter: Collection -->
        <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Organization">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Interactive -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Interactive</maml:name>
          <maml:description>
            <maml:para>Prompts for user credentials. Can be used for any Team Foundation Server or Azure DevOps account - the proper login dialog is automatically selected. Should only be used in an interactive PowerShell session (i.e., a PowerShell terminal window), never in an unattended script (such as those executed during an automated build). Currently it is only supported in Windows PowerShell. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Passthru -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Passthru</maml:name>
          <maml:description>
            <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Collection -->
      <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Organization">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Organization">
        <maml:name>Organization</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. </maml:para>
          <maml:para>This is an alias of the Collection parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Passthru -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Passthru</maml:name>
        <maml:description>
          <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Server -->
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
        <maml:name>Server</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Cached -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
        <maml:name>Cached</maml:name>
        <maml:description>
          <maml:para>Specifies that cached (default) credentials should be used when possible/available. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: UserName -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
        <maml:name>UserName</maml:name>
        <maml:description>
          <maml:para>Specifies a user name for authentication modes (such as Basic) that support username/password-based credentials. Must be used in conjunction with the -Password argument </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Password -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
        <maml:name>Password</maml:name>
        <maml:description>
          <maml:para>Specifies a password for authentication modes (such as Basic) that support username/password-based credentials. Must be used in conjunction with the -UserName argument </maml:para>
        </maml:description>
        <command:parameterValue required="true">SecureString</command:parameterValue>
        <dev:type>
          <maml:name>System.Security.SecureString</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Credential -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
        <maml:name>Credential</maml:name>
        <maml:description>
          <maml:para>Specifies a user account that has permission to perform this action. To provide a user name and password, a Personal Access Token, and/or to open a input dialog to enter your credentials, call Get-TfsCredential with the appropriate arguments and pass its return to this argument. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: PersonalAccessToken -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="named" aliases="Pat">
        <maml:name>PersonalAccessToken</maml:name>
        <maml:description>
          <maml:para>Specifies a personal access token, used as an alternate credential, to authenticate to Azure DevOps </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="true" globbing="false" pipelineInput="false" position="named" aliases="Pat">
        <maml:name>Pat</maml:name>
        <maml:description>
          <maml:para>Specifies a personal access token, used as an alternate credential, to authenticate to Azure DevOps </maml:para>
          <maml:para>This is an alias of the PersonalAccessToken parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Interactive -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Interactive</maml:name>
        <maml:description>
          <maml:para>Prompts for user credentials. Can be used for any Team Foundation Server or Azure DevOps account - the proper login dialog is automatically selected. Should only be used in an interactive PowerShell session (i.e., a PowerShell terminal window), never in an unattended script (such as those executed during an automated build). Currently it is only supported in Windows PowerShell. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. </maml:para>
        </maml:description>
      </command:inputType>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: VssConnection -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.VisualStudio.Services.WebApi.VssConnection</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:alertSet>
      <maml:para>Most cmdlets in the TfsCmdlets module require a Collection object to be provided via their -Collection argument in order to access a TFS instance. Those cmdlets will use the connection opened by Connect-TfsTeamProjectCollection as their "default connection". </maml:para>
      <maml:para>In other words, TFS cmdlets (e.g. New-TfsWorkItem) that have a -Collection argument will use the connection provided by Connect-TfsTeamProjectCollection by default. </maml:para>
    </maml:alertSet>
    <command:examples>
      <command:example>
        <maml:title>----------  EXAMPLE 1  ----------</maml:title>
        <dev:code>PS&gt; Connect-TfsTeamProjectCollection -Collection http://tfs:8080/tfs/DefaultCollection</dev:code>
        <dev:remarks>
          <maml:para>Connects to a collection called "DefaultCollection" in a TF server called "tfs" using the cached credentials of the logged-on user</maml:para>
          <maml:para></maml:para>
        </dev:remarks>
      </command:example>
      <command:example>
        <maml:title>----------  EXAMPLE 2  ----------</maml:title>
        <dev:code>PS&gt; Connect-TfsTeamProjectCollection -Collection http://tfs:8080/tfs/DefaultCollection -Interactive</dev:code>
        <dev:remarks>
          <maml:para>Connects to a collection called "DefaultCollection" in a Team Foundation server called "tfs", firstly prompting the user for credentials (it ignores the cached credentials for the currently logged-in user). It's equivalent to the command: `Connect-TfsTeamProjectCollection -Collection http://tfs:8080/tfs/DefaultCollection -Credential (Get-TfsCredential -Interactive)`</maml:para>
          <maml:para></maml:para>
        </dev:remarks>
      </command:example>
    </command:examples>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/TeamProjectCollection/Connect-TfsTeamProjectCollection</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Disconnect-TfsTeamProjectCollection -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="TeamProjectCollection">
    <command:details>
      <command:name>Disconnect-TfsTeamProjectCollection</command:name>
      <command:verb>Disconnect</command:verb>
      <command:noun>TfsTeamProjectCollection</command:noun>
      <maml:description>
        <maml:para>Disconnects from the currently connected TFS team project collection or Azure DevOps organization. </maml:para>
      </maml:description>
    </command:details>
    <maml:description>
      <maml:para>The Disconnect-TfsTeamProjectCollection cmdlet removes the connection previously set by its counterpart Connect-TfsTeamProjectCollection. Therefore, cmdlets relying on a "default collection" as provided by "Get-TfsTeamProjectCollection -Current" will no longer work after a call to this cmdlet, unless their -Collection argument is provided or a new call to Connect-TfsTeam is made. </maml:para>
    </maml:description>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Disconnect-TfsTeamProjectCollection</maml:name>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters />
    <command:inputTypes />
    <command:returnValues />
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/TeamProjectCollection/Disconnect-TfsTeamProjectCollection</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Get-TfsTeamProjectCollection -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="TeamProjectCollection">
    <command:details>
      <command:name>Get-TfsTeamProjectCollection</command:name>
      <command:verb>Get</command:verb>
      <command:noun>TfsTeamProjectCollection</command:noun>
      <maml:description>
        <maml:para>Gets one of more team project collections (organizations in Azure DevOps). </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: Get by collection -->
      <command:syntaxItem tfscmdlets:parameterSet="Get by collection">
        <maml:name>Get-TfsTeamProjectCollection</maml:name>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Organization">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
      <!-- Parameter Set: Cached credentials -->
      <command:syntaxItem tfscmdlets:parameterSet="Cached credentials">
        <maml:name>Get-TfsTeamProjectCollection</maml:name>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Organization">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Cached -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
          <maml:name>Cached</maml:name>
          <maml:description>
            <maml:para>Specifies that cached (default) credentials should be used when possible/available. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
      <!-- Parameter Set: User name and password -->
      <command:syntaxItem tfscmdlets:parameterSet="User name and password">
        <maml:name>Get-TfsTeamProjectCollection</maml:name>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Organization">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Password -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
          <maml:name>Password</maml:name>
          <maml:description>
            <maml:para>Specifies a password for authentication modes (such as Basic) that support username/password-based credentials. Must be used in conjunction with the -UserName argument </maml:para>
          </maml:description>
          <command:parameterValue required="true">SecureString</command:parameterValue>
          <dev:type>
            <maml:name>System.Security.SecureString</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: UserName -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
          <maml:name>UserName</maml:name>
          <maml:description>
            <maml:para>Specifies a user name for authentication modes (such as Basic) that support username/password-based credentials. Must be used in conjunction with the -Password argument </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
      <!-- Parameter Set: Credential object -->
      <command:syntaxItem tfscmdlets:parameterSet="Credential object">
        <maml:name>Get-TfsTeamProjectCollection</maml:name>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Organization">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Credential -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
          <maml:name>Credential</maml:name>
          <maml:description>
            <maml:para>Specifies a user account that has permission to perform this action. To provide a user name and password, a Personal Access Token, and/or to open a input dialog to enter your credentials, call Get-TfsCredential with the appropriate arguments and pass its return to this argument. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
      <!-- Parameter Set: Personal Access Token -->
      <command:syntaxItem tfscmdlets:parameterSet="Personal Access Token">
        <maml:name>Get-TfsTeamProjectCollection</maml:name>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Organization">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: PersonalAccessToken -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="named" aliases="Pat">
          <maml:name>PersonalAccessToken</maml:name>
          <maml:description>
            <maml:para>Specifies a personal access token, used as an alternate credential, to authenticate to Azure DevOps </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
      <!-- Parameter Set: Prompt for credential -->
      <command:syntaxItem tfscmdlets:parameterSet="Prompt for credential">
        <maml:name>Get-TfsTeamProjectCollection</maml:name>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Organization">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Interactive -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Interactive</maml:name>
          <maml:description>
            <maml:para>Prompts for user credentials. Can be used for any Team Foundation Server or Azure DevOps account - the proper login dialog is automatically selected. Should only be used in an interactive PowerShell session (i.e., a PowerShell terminal window), never in an unattended script (such as those executed during an automated build). Currently it is only supported in Windows PowerShell. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
      <!-- Parameter Set: Get current -->
      <command:syntaxItem tfscmdlets:parameterSet="Get current">
        <maml:name>Get-TfsTeamProjectCollection</maml:name>
        <!-- Parameter: Current -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
          <maml:name>Current</maml:name>
          <maml:description>
            <maml:para>Returns the team project collection specified in the last call to Connect-TfsTeamProjectCollection (i.e. the "current" project collection) </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Organization">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Organization">
        <maml:name>Organization</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          <maml:para>This is an alias of the Collection parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Current -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
        <maml:name>Current</maml:name>
        <maml:description>
          <maml:para>Returns the team project collection specified in the last call to Connect-TfsTeamProjectCollection (i.e. the "current" project collection) </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Server -->
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
        <maml:name>Server</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Cached -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
        <maml:name>Cached</maml:name>
        <maml:description>
          <maml:para>Specifies that cached (default) credentials should be used when possible/available. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: UserName -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
        <maml:name>UserName</maml:name>
        <maml:description>
          <maml:para>Specifies a user name for authentication modes (such as Basic) that support username/password-based credentials. Must be used in conjunction with the -Password argument </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Password -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
        <maml:name>Password</maml:name>
        <maml:description>
          <maml:para>Specifies a password for authentication modes (such as Basic) that support username/password-based credentials. Must be used in conjunction with the -UserName argument </maml:para>
        </maml:description>
        <command:parameterValue required="true">SecureString</command:parameterValue>
        <dev:type>
          <maml:name>System.Security.SecureString</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Credential -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
        <maml:name>Credential</maml:name>
        <maml:description>
          <maml:para>Specifies a user account that has permission to perform this action. To provide a user name and password, a Personal Access Token, and/or to open a input dialog to enter your credentials, call Get-TfsCredential with the appropriate arguments and pass its return to this argument. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: PersonalAccessToken -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="named" aliases="Pat">
        <maml:name>PersonalAccessToken</maml:name>
        <maml:description>
          <maml:para>Specifies a personal access token, used as an alternate credential, to authenticate to Azure DevOps </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="true" globbing="false" pipelineInput="false" position="named" aliases="Pat">
        <maml:name>Pat</maml:name>
        <maml:description>
          <maml:para>Specifies a personal access token, used as an alternate credential, to authenticate to Azure DevOps </maml:para>
          <maml:para>This is an alias of the PersonalAccessToken parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Interactive -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Interactive</maml:name>
        <maml:description>
          <maml:para>Prompts for user credentials. Can be used for any Team Foundation Server or Azure DevOps account - the proper login dialog is automatically selected. Should only be used in an interactive PowerShell session (i.e., a PowerShell terminal window), never in an unattended script (such as those executed during an automated build). Currently it is only supported in Windows PowerShell. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: TfsTeamProjectCollection -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.TeamFoundation.Client.TfsTeamProjectCollection</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/TeamProjectCollection/Get-TfsTeamProjectCollection</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: New-TfsTeamProjectCollection -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="TeamProjectCollection">
    <command:details>
      <command:name>New-TfsTeamProjectCollection</command:name>
      <command:verb>New</command:verb>
      <command:noun>TfsTeamProjectCollection</command:noun>
      <maml:description>
        <maml:para>Creates a new team project collection. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: Use database server -->
      <command:syntaxItem tfscmdlets:parameterSet="Use database server">
        <maml:name>New-TfsTeamProjectCollection</maml:name>
        <!-- Parameter: Collection -->
        <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Name">
          <maml:name>Collection</maml:name>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: DatabaseServer -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
          <maml:name>DatabaseServer</maml:name>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: DatabaseName -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>DatabaseName</maml:name>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Default -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Default</maml:name>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Description -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Description</maml:name>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: InitialState -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>InitialState</maml:name>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>Started</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Passthru -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Passthru</maml:name>
          <maml:description>
            <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: PollingInterval -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>PollingInterval</maml:name>
          <command:parameterValue required="true">int</command:parameterValue>
          <dev:type>
            <maml:name>System.Int32</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>5</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Timeout -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Timeout</maml:name>
          <command:parameterValue required="true">TimeSpan</command:parameterValue>
          <dev:type>
            <maml:name>System.TimeSpan</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>10675199.02:48:05.4775807</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: UseExistingDatabase -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>UseExistingDatabase</maml:name>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
      </command:syntaxItem>
      <!-- Parameter Set: Use connection string -->
      <command:syntaxItem tfscmdlets:parameterSet="Use connection string">
        <maml:name>New-TfsTeamProjectCollection</maml:name>
        <!-- Parameter: Collection -->
        <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Name">
          <maml:name>Collection</maml:name>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: ConnectionString -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
          <maml:name>ConnectionString</maml:name>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Default -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Default</maml:name>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Description -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Description</maml:name>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: InitialState -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>InitialState</maml:name>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>Started</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Passthru -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Passthru</maml:name>
          <maml:description>
            <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: PollingInterval -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>PollingInterval</maml:name>
          <command:parameterValue required="true">int</command:parameterValue>
          <dev:type>
            <maml:name>System.Int32</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>5</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Timeout -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Timeout</maml:name>
          <command:parameterValue required="true">TimeSpan</command:parameterValue>
          <dev:type>
            <maml:name>System.TimeSpan</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>10675199.02:48:05.4775807</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: UseExistingDatabase -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>UseExistingDatabase</maml:name>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Collection -->
      <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Name">
        <maml:name>Collection</maml:name>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Name">
        <maml:name>Name</maml:name>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>This is an alias of the Collection parameter.</maml:para>
        </maml:description>
      </command:parameter>
      <!-- Parameter: Description -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Description</maml:name>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: DatabaseServer -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
        <maml:name>DatabaseServer</maml:name>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: DatabaseName -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>DatabaseName</maml:name>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: ConnectionString -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
        <maml:name>ConnectionString</maml:name>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Default -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Default</maml:name>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: UseExistingDatabase -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>UseExistingDatabase</maml:name>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: InitialState -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>InitialState</maml:name>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>Started</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: PollingInterval -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>PollingInterval</maml:name>
        <command:parameterValue required="true">int</command:parameterValue>
        <dev:type>
          <maml:name>System.Int32</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>5</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Timeout -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Timeout</maml:name>
        <command:parameterValue required="true">TimeSpan</command:parameterValue>
        <dev:type>
          <maml:name>System.TimeSpan</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>10675199.02:48:05.4775807</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Passthru -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Passthru</maml:name>
        <maml:description>
          <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Server -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Server</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: Connection -->
      <command:returnValue>
        <dev:type>
          <maml:name>TfsCmdlets.Models.Connection</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/TeamProjectCollection/New-TfsTeamProjectCollection</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Remove-TfsTeamProjectCollection -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="TeamProjectCollection">
    <command:details>
      <command:name>Remove-TfsTeamProjectCollection</command:name>
      <command:verb>Remove</command:verb>
      <command:noun>TfsTeamProjectCollection</command:noun>
      <maml:description>
        <maml:para>Deletes a team project collection. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Remove-TfsTeamProjectCollection</maml:name>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0">
          <maml:name>Collection</maml:name>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Timeout -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Timeout</maml:name>
          <command:parameterValue required="true">TimeSpan</command:parameterValue>
          <dev:type>
            <maml:name>System.TimeSpan</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>10675199.02:48:05.4775807</dev:defaultValue>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0">
        <maml:name>Collection</maml:name>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Timeout -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Timeout</maml:name>
        <command:parameterValue required="true">TimeSpan</command:parameterValue>
        <dev:type>
          <maml:name>System.TimeSpan</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>10675199.02:48:05.4775807</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Server -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Server</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues />
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/TeamProjectCollection/Remove-TfsTeamProjectCollection</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Get-TfsTeamProjectMember -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/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.Member">
    <command:details>
      <command:name>Get-TfsTeamProjectMember</command:name>
      <command:verb>Get</command:verb>
      <command:noun>TfsTeamProjectMember</command:noun>
      <maml:description>
        <maml:para>Gets the members of a team project. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Get-TfsTeamProjectMember</maml:name>
        <!-- Parameter: AsIdentity -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>AsIdentity</maml:name>
          <maml:description>
            <maml:para>Returns the members as fully resolved Identity objects. When omitted, it returns only the name, ID and email of the users. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Member -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Member</maml:name>
          <maml:description>
            <maml:para>Specifies the name of a team project member. Wildcards are supported. When omitted, all team project members 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: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Member -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Member</maml:name>
        <maml:description>
          <maml:para>Specifies the name of a team project member. Wildcards are supported. When omitted, all team project members 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: AsIdentity -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>AsIdentity</maml:name>
        <maml:description>
          <maml:para>Returns the members as fully resolved Identity objects. When omitted, it returns only the name, ID and email of the users. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Organization</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          <maml:para>This is an alias of the Collection parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Server -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Server</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: Identity -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.VisualStudio.Services.Identity.Identity</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
      <!-- OutputType: TeamProjectMember -->
      <command:returnValue>
        <dev:type>
          <maml:name>TfsCmdlets.Models.TeamProjectMember</maml:name>
          <maml: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/Member/Get-TfsTeamProjectMember</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Undo-TfsTeamProjectRemoval -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="TeamProject">
    <command:details>
      <command:name>Undo-TfsTeamProjectRemoval</command:name>
      <command:verb>Undo</command:verb>
      <command:noun>TfsTeamProjectRemoval</command:noun>
      <maml:description>
        <maml:para>Undeletes one or more team projects. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Undo-TfsTeamProjectRemoval</maml:name>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project to undelete. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project to undelete. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Organization</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          <maml:para>This is an alias of the Collection parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Server -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Server</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the name of the Team Project to undelete. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues />
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/TeamProject/Undo-TfsTeamProjectRemoval</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Copy-TfsTestPlan -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="TestManagement">
    <command:details>
      <command:name>Copy-TfsTestPlan</command:name>
      <command:verb>Copy</command:verb>
      <command:noun>TfsTestPlan</command:noun>
      <maml:description>
        <maml:para>Clone a test plan and, optionally, its test suites and test cases. </maml:para>
      </maml:description>
    </command:details>
    <maml:description>
      <maml:para>The Copy-TfsTestPlan copies ("clones") a test plan to help duplicate test suites and/or test cases. Cloning is useful if you want to branch your application into two versions. After copying, the tests for the two versions can be changed without affecting each other. When you clone a test suite, the following objects are copied from the source test plan to the destination test plan: * Test cases (note: Each new test case retains its shared steps. A link is made between the source and new test cases. The new test cases do not have test runs, bugs, test results, and build information); * Shared steps referenced by cloned test cases; * Test suites (note: The following data is retained - Names and hierarchical structure of the test suites; Order of the test cases; Assigned testers; Configurations); * Action Recordings linked from a cloned test case; * Links and Attachments; * Test configuration. The items below are only copied when using -CloneRequirements: * Requirements-based suites; * Requirements work items (product backlog items or user stories); * Bug work items, when in a project that uses the Scrum process template or any other project in which the Bug work item type is in the Requirements work item category. In other projects, bugs are not cloned. </maml:para>
    </maml:description>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Copy-TfsTestPlan</maml:name>
        <!-- Parameter: TestPlan -->
        <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="id">
          <maml:name>TestPlan</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the test plan to clone. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: NewName -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="1">
          <maml:name>NewName</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the new test plan. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: AreaPath -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>AreaPath</maml:name>
          <maml:description>
            <maml:para>Specifies the area path where the test plan will be cloned into. When omitted, the test plan is cloned into the same area path of the original test plan. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: CloneRequirements -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>CloneRequirements</maml:name>
          <maml:description>
            <maml:para>Clones requirements referenced by the test plan. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: CopyAncestorHierarchy -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>CopyAncestorHierarchy</maml:name>
          <maml:description>
            <maml:para>Copies ancestor hierarchy. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: DeepClone -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>DeepClone</maml:name>
          <maml:description>
            <maml:para>Clones all the referenced test cases. When omitted, only the test plan is cloned; the original test cases are only referenced in the new plan, not duplicated. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Destination -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Destination</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the team project where the test plan will be cloned into. When omitted, the test plan is cloned into the same team project of the original test plan. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: DestinationWorkItemType -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>DestinationWorkItemType</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the workitem type of the clone. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>Test Case</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: IterationPath -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>IterationPath</maml:name>
          <maml:description>
            <maml:para>Specifies the iteration path where the test plan will be cloned into. When omitted, the test plan is cloned into the same iteration path of the original test plan. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Passthru -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Passthru</maml:name>
          <maml:description>
            <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>None</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Recurse -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Recurse</maml:name>
          <maml:description>
            <maml:para>Clone all test suites recursively. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: RelatedLinkComment -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>RelatedLinkComment</maml:name>
          <maml:description>
            <maml:para>Specifies the comment of the Related link that is created ato point to the original test plan. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: SuiteIds -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>SuiteIds</maml:name>
          <maml:description>
            <maml:para>Clones only the specified suites. </maml:para>
          </maml:description>
          <command:parameterValue required="true">int[]</command:parameterValue>
          <dev:type>
            <maml:name>System.Int32[]</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: TestPlan -->
      <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="id">
        <maml:name>TestPlan</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the test plan to clone. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="id">
        <maml:name>id</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the test plan to clone. </maml:para>
          <maml:para>This is an alias of the TestPlan parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: NewName -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="1">
        <maml:name>NewName</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the new test plan. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Destination -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Destination</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the team project where the test plan will be cloned into. When omitted, the test plan is cloned into the same team project of the original test plan. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: AreaPath -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>AreaPath</maml:name>
        <maml:description>
          <maml:para>Specifies the area path where the test plan will be cloned into. When omitted, the test plan is cloned into the same area path of the original test plan. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: IterationPath -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>IterationPath</maml:name>
        <maml:description>
          <maml:para>Specifies the iteration path where the test plan will be cloned into. When omitted, the test plan is cloned into the same iteration path of the original test plan. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: DeepClone -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>DeepClone</maml:name>
        <maml:description>
          <maml:para>Clones all the referenced test cases. When omitted, only the test plan is cloned; the original test cases are only referenced in the new plan, not duplicated. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Recurse -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Recurse</maml:name>
        <maml:description>
          <maml:para>Clone all test suites recursively. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: CopyAncestorHierarchy -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>CopyAncestorHierarchy</maml:name>
        <maml:description>
          <maml:para>Copies ancestor hierarchy. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: CloneRequirements -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>CloneRequirements</maml:name>
        <maml:description>
          <maml:para>Clones requirements referenced by the test plan. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: DestinationWorkItemType -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>DestinationWorkItemType</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the workitem type of the clone. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>Test Case</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: SuiteIds -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>SuiteIds</maml:name>
        <maml:description>
          <maml:para>Clones only the specified suites. </maml:para>
        </maml:description>
        <command:parameterValue required="true">int[]</command:parameterValue>
        <dev:type>
          <maml:name>System.Int32[]</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: RelatedLinkComment -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>RelatedLinkComment</maml:name>
        <maml:description>
          <maml:para>Specifies the comment of the Related link that is created ato point to the original test plan. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Passthru -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Passthru</maml:name>
        <maml:description>
          <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>None</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Organization</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          <maml:para>This is an alias of the Collection parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Server -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Server</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the name of the test plan to clone. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: TestPlan -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.VisualStudio.Services.TestManagement.TestPlanning.WebApi.TestPlan</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <command:examples>
      <command:example>
        <maml:title>----------  EXAMPLE 1  ----------</maml:title>
        <dev:code>PS&gt; Copy-TfsTestPlan -TestPlan "My test plan" -Project "SourceProject" -Destination "TargetProject" -NewName "My new test plan"</dev:code>
        <dev:remarks>
          <maml:para></maml:para>
        </dev:remarks>
      </command:example>
    </command:examples>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/TestManagement/Copy-TfsTestPlan</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Get-TfsTestPlan -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="TestManagement">
    <command:details>
      <command:name>Get-TfsTestPlan</command:name>
      <command:verb>Get</command:verb>
      <command:noun>TfsTestPlan</command:noun>
      <maml:description>
        <maml:para>Gets the contents of one or more test plans. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Get-TfsTestPlan</maml:name>
        <!-- Parameter: TestPlan -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Id,Name">
          <maml:name>TestPlan</maml:name>
          <maml:description>
            <maml:para>Specifies the test plan name. Wildcards are supported. When omitted, returns all test cases in the given team project. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>*</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Active -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Active</maml:name>
          <maml:description>
            <maml:para>Get only the active plans. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: NoPlanDetails -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>NoPlanDetails</maml:name>
          <maml:description>
            <maml:para>Get only basic properties of the test plan. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Owner -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Owner</maml:name>
          <maml:description>
            <maml:para>Gets only the plans owned by the specified user. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: TestPlan -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Id,Name">
        <maml:name>TestPlan</maml:name>
        <maml:description>
          <maml:para>Specifies the test plan name. Wildcards are supported. When omitted, returns all test cases in the given team project. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>*</dev:defaultValue>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Id,Name">
        <maml:name>Id</maml:name>
        <maml:description>
          <maml:para>Specifies the test plan name. Wildcards are supported. When omitted, returns all test cases in the given team project. </maml:para>
          <maml:para>This is an alias of the TestPlan parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>*</dev:defaultValue>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Id,Name">
        <maml:name>Name</maml:name>
        <maml:description>
          <maml:para>Specifies the test plan name. Wildcards are supported. When omitted, returns all test cases in the given team project. </maml:para>
          <maml:para>This is an alias of the TestPlan parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>*</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Owner -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Owner</maml:name>
        <maml:description>
          <maml:para>Gets only the plans owned by the specified user. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: NoPlanDetails -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>NoPlanDetails</maml:name>
        <maml:description>
          <maml:para>Get only basic properties of the test plan. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Active -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Active</maml:name>
        <maml:description>
          <maml:para>Get only the active plans. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Organization</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          <maml:para>This is an alias of the Collection parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Server -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Server</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: TestPlan -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.VisualStudio.Services.TestManagement.TestPlanning.WebApi.TestPlan</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/TestManagement/Get-TfsTestPlan</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: New-TfsTestPlan -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="TestManagement">
    <command:details>
      <command:name>New-TfsTestPlan</command:name>
      <command:verb>New</command:verb>
      <command:noun>TfsTestPlan</command:noun>
      <maml:description>
        <maml:para>Creates a new test plan. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>New-TfsTestPlan</maml:name>
        <!-- Parameter: TestPlan -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="0" aliases="Name">
          <maml:name>TestPlan</maml:name>
          <maml:description>
            <maml:para>Specifies the test plan name. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: AreaPath -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>AreaPath</maml:name>
          <maml:description>
            <maml:para>Specifies the owner of the new test plan. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: EndDate -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>EndDate</maml:name>
          <maml:description>
            <maml:para>Specifies the end date of the test plan. </maml:para>
          </maml:description>
          <command:parameterValue required="true">DateTime</command:parameterValue>
          <dev:type>
            <maml:name>System.DateTime</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>1/1/0001 12:00:00 AM</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: IterationPath -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>IterationPath</maml:name>
          <maml:description>
            <maml:para>Specifies the owner of the new test plan. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Owner -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Owner</maml:name>
          <maml:description>
            <maml:para>Specifies the owner of the new test plan. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Passthru -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Passthru</maml:name>
          <maml:description>
            <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: StartDate -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>StartDate</maml:name>
          <maml:description>
            <maml:para>Specifies the start date of the test plan. </maml:para>
          </maml:description>
          <command:parameterValue required="true">DateTime</command:parameterValue>
          <dev:type>
            <maml:name>System.DateTime</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>1/1/0001 12:00:00 AM</dev:defaultValue>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: TestPlan -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="0" aliases="Name">
        <maml:name>TestPlan</maml:name>
        <maml:description>
          <maml:para>Specifies the test plan name. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="true" globbing="false" pipelineInput="false" position="0" aliases="Name">
        <maml:name>Name</maml:name>
        <maml:description>
          <maml:para>Specifies the test plan name. </maml:para>
          <maml:para>This is an alias of the TestPlan parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: AreaPath -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>AreaPath</maml:name>
        <maml:description>
          <maml:para>Specifies the owner of the new test plan. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: IterationPath -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>IterationPath</maml:name>
        <maml:description>
          <maml:para>Specifies the owner of the new test plan. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: StartDate -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>StartDate</maml:name>
        <maml:description>
          <maml:para>Specifies the start date of the test plan. </maml:para>
        </maml:description>
        <command:parameterValue required="true">DateTime</command:parameterValue>
        <dev:type>
          <maml:name>System.DateTime</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>1/1/0001 12:00:00 AM</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: EndDate -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>EndDate</maml:name>
        <maml:description>
          <maml:para>Specifies the end date of the test plan. </maml:para>
        </maml:description>
        <command:parameterValue required="true">DateTime</command:parameterValue>
        <dev:type>
          <maml:name>System.DateTime</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>1/1/0001 12:00:00 AM</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Owner -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Owner</maml:name>
        <maml:description>
          <maml:para>Specifies the owner of the new test plan. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Passthru -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Passthru</maml:name>
        <maml:description>
          <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Organization</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          <maml:para>This is an alias of the Collection parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Server -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Server</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes />
    <command:returnValues>
      <!-- OutputType: TestPlan -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.VisualStudio.Services.TestManagement.TestPlanning.WebApi.TestPlan</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/TestManagement/New-TfsTestPlan</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Remove-TfsTestPlan -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="TestManagement">
    <command:details>
      <command:name>Remove-TfsTestPlan</command:name>
      <command:verb>Remove</command:verb>
      <command:noun>TfsTestPlan</command:noun>
      <maml:description>
        <maml:para>Deletes one or more test plans. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Remove-TfsTestPlan</maml:name>
        <!-- Parameter: TestPlan -->
        <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Id,Name">
          <maml:name>TestPlan</maml:name>
          <maml:description>
            <maml:para>Specifies one or more test plans to delete. Wildcards are supported. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: TestPlan -->
      <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Id,Name">
        <maml:name>TestPlan</maml:name>
        <maml:description>
          <maml:para>Specifies one or more test plans to delete. Wildcards are supported. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Id,Name">
        <maml:name>Id</maml:name>
        <maml:description>
          <maml:para>Specifies one or more test plans to delete. Wildcards are supported. </maml:para>
          <maml:para>This is an alias of the TestPlan parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Id,Name">
        <maml:name>Name</maml:name>
        <maml:description>
          <maml:para>Specifies one or more test plans to delete. Wildcards are supported. </maml:para>
          <maml:para>This is an alias of the TestPlan parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Organization</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          <maml:para>This is an alias of the Collection parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Server -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Server</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies one or more test plans to delete. Wildcards are supported. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues />
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/TestManagement/Remove-TfsTestPlan</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Rename-TfsTestPlan -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="TestManagement">
    <command:details>
      <command:name>Rename-TfsTestPlan</command:name>
      <command:verb>Rename</command:verb>
      <command:noun>TfsTestPlan</command:noun>
      <maml:description>
        <maml:para>Renames a test plans. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Rename-TfsTestPlan</maml:name>
        <!-- Parameter: TestPlan -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Id,Name">
          <maml:name>TestPlan</maml:name>
          <maml:description>
            <maml:para>Specifies the test plan name. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: NewName -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="1">
          <maml:name>NewName</maml:name>
          <maml:description>
            <maml:para>Specifies the new name of the item. Enter only a name - i.e., for items that support paths, do not enter a path and name. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: TestPlan -->
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Id,Name">
        <maml:name>TestPlan</maml:name>
        <maml:description>
          <maml:para>Specifies the test plan name. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Id,Name">
        <maml:name>Id</maml:name>
        <maml:description>
          <maml:para>Specifies the test plan name. </maml:para>
          <maml:para>This is an alias of the TestPlan parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Id,Name">
        <maml:name>Name</maml:name>
        <maml:description>
          <maml:para>Specifies the test plan name. </maml:para>
          <maml:para>This is an alias of the TestPlan parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: NewName -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="1">
        <maml:name>NewName</maml:name>
        <maml:description>
          <maml:para>Specifies the new name of the item. Enter only a name - i.e., for items that support paths, do not enter a path and name. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Organization</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          <maml:para>This is an alias of the Collection parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Server -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Server</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the test plan name. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: TestPlan -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.VisualStudio.Services.TestManagement.TestPlanning.WebApi.TestPlan</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/TestManagement/Rename-TfsTestPlan</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Get-TfsUser -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Identity.User">
    <command:details>
      <command:name>Get-TfsUser</command:name>
      <command:verb>Get</command:verb>
      <command:noun>TfsUser</command:noun>
      <maml:description>
        <maml:para>Gets information about one or more Azure DevOps users. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: Get by ID or Name -->
      <command:syntaxItem tfscmdlets:parameterSet="Get by ID or Name">
        <maml:name>Get-TfsUser</maml:name>
        <!-- Parameter: User -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="UserId">
          <maml:name>User</maml:name>
          <maml:description>
            <maml:para>Specifies the user or group to be retrieved. Supported values are: User/group name, email, or ID </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>*</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
      <!-- Parameter Set: Get current user -->
      <command:syntaxItem tfscmdlets:parameterSet="Get current user">
        <maml:name>Get-TfsUser</maml:name>
        <!-- Parameter: Current -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
          <maml:name>Current</maml:name>
          <maml:description>
            <maml:para>Returns an identity representing the user currently logged in to the Azure DevOps / TFS instance </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: User -->
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="UserId">
        <maml:name>User</maml:name>
        <maml:description>
          <maml:para>Specifies the user or group to be retrieved. Supported values are: User/group name, email, or ID </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>*</dev:defaultValue>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="UserId">
        <maml:name>UserId</maml:name>
        <maml:description>
          <maml:para>Specifies the user or group to be retrieved. Supported values are: User/group name, email, or ID </maml:para>
          <maml:para>This is an alias of the User parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>*</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Current -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
        <maml:name>Current</maml:name>
        <maml:description>
          <maml:para>Returns an identity representing the user currently logged in to the Azure DevOps / TFS instance </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Organization</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          <maml:para>This is an alias of the Collection parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Server -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Server</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the user or group to be retrieved. Supported values are: User/group name, email, or ID </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: AccountEntitlement -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.VisualStudio.Services.Licensing.AccountEntitlement</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/Identity/User/Get-TfsUser</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Get-TfsVersion -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Admin">
    <command:details>
      <command:name>Get-TfsVersion</command:name>
      <command:verb>Get</command:verb>
      <command:noun>TfsVersion</command:noun>
      <maml:description>
        <maml:para>Gets the version information about Team Foundation / Azure DevOps servers and Azure DevOps Services organizations. </maml:para>
      </maml:description>
    </command:details>
    <maml:description>
      <maml:para>The Get-TfsVersion cmdlet retrieves version information from the supplied team project collection or Azure DevOps organization. When available/applicable, detailed information about installed updates, deployed sprints and so on are also provided. </maml:para>
    </maml:description>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Get-TfsVersion</maml:name>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named" aliases="Organization">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named" aliases="Organization">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named" aliases="Organization">
        <maml:name>Organization</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          <maml:para>This is an alias of the Collection parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Server -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Server</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: ServerVersion -->
      <command:returnValue>
        <dev:type>
          <maml:name>TfsCmdlets.Models.ServerVersion</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/Admin/Get-TfsVersion</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Get-TfsWiki -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Wiki">
    <command:details>
      <command:name>Get-TfsWiki</command:name>
      <command:verb>Get</command:verb>
      <command:noun>TfsWiki</command:noun>
      <maml:description>
        <maml:para>Gets information from one or more Wiki repositories in a team project. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: Get all wikis -->
      <command:syntaxItem tfscmdlets:parameterSet="Get all wikis">
        <maml:name>Get-TfsWiki</maml:name>
        <!-- Parameter: Wiki -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name,Id">
          <maml:name>Wiki</maml:name>
          <maml:description>
            <maml:para>Specifies the name or ID of a Wiki repository. Wildcards are supported. When omitted, all Wiki repositories in the supplied team project are returned. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>*</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
      <!-- Parameter Set: Get Project Wiki -->
      <command:syntaxItem tfscmdlets:parameterSet="Get Project Wiki">
        <maml:name>Get-TfsWiki</maml:name>
        <!-- Parameter: ProjectWiki -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
          <maml:name>ProjectWiki</maml:name>
          <maml:description>
            <maml:para>Returns only provisioned ("project") Wikis. When omitted, returns all Wikis (both Project wikis and Code wikis). </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Wiki -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name,Id">
        <maml:name>Wiki</maml:name>
        <maml:description>
          <maml:para>Specifies the name or ID of a Wiki repository. Wildcards are supported. When omitted, all Wiki repositories in the supplied team project are returned. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>*</dev:defaultValue>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name,Id">
        <maml:name>Name</maml:name>
        <maml:description>
          <maml:para>Specifies the name or ID of a Wiki repository. Wildcards are supported. When omitted, all Wiki repositories in the supplied team project are returned. </maml:para>
          <maml:para>This is an alias of the Wiki parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>*</dev:defaultValue>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name,Id">
        <maml:name>Id</maml:name>
        <maml:description>
          <maml:para>Specifies the name or ID of a Wiki repository. Wildcards are supported. When omitted, all Wiki repositories in the supplied team project are returned. </maml:para>
          <maml:para>This is an alias of the Wiki parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>*</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: ProjectWiki -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
        <maml:name>ProjectWiki</maml:name>
        <maml:description>
          <maml:para>Returns only provisioned ("project") Wikis. When omitted, returns all Wikis (both Project wikis and Code wikis). </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Organization</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          <maml:para>This is an alias of the Collection parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Server -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Server</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: WikiV2 -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.TeamFoundation.Wiki.WebApi.WikiV2</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/Wiki/Get-TfsWiki</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: New-TfsWiki -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Wiki">
    <command:details>
      <command:name>New-TfsWiki</command:name>
      <command:verb>New</command:verb>
      <command:noun>TfsWiki</command:noun>
      <maml:description>
        <maml:para>Creates a new Wiki repository in a team project. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: Create Code Wiki -->
      <command:syntaxItem tfscmdlets:parameterSet="Create Code Wiki">
        <maml:name>New-TfsWiki</maml:name>
        <!-- Parameter: Wiki -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="0" aliases="Name,Id">
          <maml:name>Wiki</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the new Wiki </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Repository -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="1">
          <maml:name>Repository</maml:name>
          <maml:description>
            <maml:para>Specifies the name or ID of the Git repository to publish as a Wiki </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Branch -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Branch</maml:name>
          <maml:description>
            <maml:para>Specifies the name or ID of the source branch to publish as a Wiki. When ommited, the default branch is used. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Passthru -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Passthru</maml:name>
          <maml:description>
            <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Path -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Path</maml:name>
          <maml:description>
            <maml:para>Specifies the path to the folder in the repository to publish as a Wiki. When ommited, defaults to the root folder. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>/</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
      <!-- Parameter Set: Provision Project Wiki -->
      <command:syntaxItem tfscmdlets:parameterSet="Provision Project Wiki">
        <maml:name>New-TfsWiki</maml:name>
        <!-- Parameter: ProjectWiki -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
          <maml:name>ProjectWiki</maml:name>
          <maml:description>
            <maml:para>Creates a provisioned ("project") Wiki in the specified Team Project. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Passthru -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Passthru</maml:name>
          <maml:description>
            <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Wiki -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="0" aliases="Name,Id">
        <maml:name>Wiki</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the new Wiki </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="true" globbing="false" pipelineInput="false" position="0" aliases="Name,Id">
        <maml:name>Name</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the new Wiki </maml:para>
          <maml:para>This is an alias of the Wiki parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="true" globbing="false" pipelineInput="false" position="0" aliases="Name,Id">
        <maml:name>Id</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the new Wiki </maml:para>
          <maml:para>This is an alias of the Wiki parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Repository -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="1">
        <maml:name>Repository</maml:name>
        <maml:description>
          <maml:para>Specifies the name or ID of the Git repository to publish as a Wiki </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Branch -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Branch</maml:name>
        <maml:description>
          <maml:para>Specifies the name or ID of the source branch to publish as a Wiki. When ommited, the default branch is used. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Path -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Path</maml:name>
        <maml:description>
          <maml:para>Specifies the path to the folder in the repository to publish as a Wiki. When ommited, defaults to the root folder. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>/</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: ProjectWiki -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
        <maml:name>ProjectWiki</maml:name>
        <maml:description>
          <maml:para>Creates a provisioned ("project") Wiki in the specified Team Project. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Passthru -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Passthru</maml:name>
        <maml:description>
          <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Organization</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          <maml:para>This is an alias of the Collection parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Server -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Server</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes />
    <command:returnValues>
      <!-- OutputType: WikiV2 -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.TeamFoundation.Wiki.WebApi.WikiV2</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/Wiki/New-TfsWiki</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Remove-TfsWiki -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="Wiki">
    <command:details>
      <command:name>Remove-TfsWiki</command:name>
      <command:verb>Remove</command:verb>
      <command:noun>TfsWiki</command:noun>
      <maml:description>
        <maml:para>Deletes one or more Git repositories from a team project. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: Remove code wiki -->
      <command:syntaxItem tfscmdlets:parameterSet="Remove code wiki">
        <maml:name>Remove-TfsWiki</maml:name>
        <!-- Parameter: Wiki -->
        <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Name">
          <maml:name>Wiki</maml:name>
          <maml:description>
            <maml:para>Specifies the Wiki to be deleted. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
      <!-- Parameter Set: Remove Project Wiki -->
      <command:syntaxItem tfscmdlets:parameterSet="Remove Project Wiki">
        <maml:name>Remove-TfsWiki</maml:name>
        <!-- Parameter: ProjectWiki -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
          <maml:name>ProjectWiki</maml:name>
          <maml:description>
            <maml:para>Deletes the provisioned ("project") Wiki of the specified Team Project. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Wiki -->
      <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Name">
        <maml:name>Wiki</maml:name>
        <maml:description>
          <maml:para>Specifies the Wiki to be deleted. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Name">
        <maml:name>Name</maml:name>
        <maml:description>
          <maml:para>Specifies the Wiki to be deleted. </maml:para>
          <maml:para>This is an alias of the Wiki parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: ProjectWiki -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
        <maml:name>ProjectWiki</maml:name>
        <maml:description>
          <maml:para>Deletes the provisioned ("project") Wiki of the specified Team Project. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Organization</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          <maml:para>This is an alias of the Collection parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Server -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Server</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the Wiki to be deleted. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues />
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/Wiki/Remove-TfsWiki</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Get-TfsWorkItem -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="WorkItem">
    <command:details>
      <command:name>Get-TfsWorkItem</command:name>
      <command:verb>Get</command:verb>
      <command:noun>TfsWorkItem</command:noun>
      <maml:description>
        <maml:para>Gets the contents of one or more work items. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: Query by revision -->
      <command:syntaxItem tfscmdlets:parameterSet="Query by revision">
        <maml:name>Get-TfsWorkItem</maml:name>
        <!-- Parameter: WorkItem -->
        <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="id">
          <maml:name>WorkItem</maml:name>
          <maml:description>
            <maml:para>Specifies a work item. Valid values are the work item ID or an instance of Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItem. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Fields -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Fields</maml:name>
          <maml:description>
            <maml:para>Specifies which fields should be retrieved. When omitted, defaults to a set of standard fields that include Id, Title, Description, some state-related fields and more. To retrive all fields, pass an asterisk ('*') to this argument. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string[]</command:parameterValue>
          <dev:type>
            <maml:name>System.String[]</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>System.AreaPath, System.TeamProject, System.IterationPath, System.WorkItemType, System.State, System.Reason, System.CreatedDate, System.CreatedBy, System.ChangedDate, System.ChangedBy, System.CommentCount, System.Title, System.BoardColumn, System.BoardColumnDone, Microsoft.VSTS.Common.StateChangeDate, Microsoft.VSTS.Common.Priority, Microsoft.VSTS.Common.ValueArea, System.Description, System.Tags</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: IncludeLinks -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>IncludeLinks</maml:name>
          <maml:description>
            <maml:para>Gets information about all links and attachments in the work item. When omitted, only fields are retrieved. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Revision -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="rev">
          <maml:name>Revision</maml:name>
          <maml:description>
            <maml:para>B Specifies a work item revision number to retrieve. When omitted, returns the latest revision of the work item. </maml:para>
          </maml:description>
          <command:parameterValue required="true">int</command:parameterValue>
          <dev:type>
            <maml:name>System.Int32</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>0</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: ShowWindow -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>ShowWindow</maml:name>
          <maml:description>
            <maml:para>Opens the specified work item in the default web browser. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Team -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Team</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeam (if any). For more details, see the Get-TfsTeam cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: TimePrecision -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>TimePrecision</maml:name>
          <maml:description>
            <maml:para>Fetches work items in "time-precision mode": search criteria in WIQL queries take into account time information as well, not only dates. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
      </command:syntaxItem>
      <!-- Parameter Set: Query by date -->
      <command:syntaxItem tfscmdlets:parameterSet="Query by date">
        <maml:name>Get-TfsWorkItem</maml:name>
        <!-- Parameter: WorkItem -->
        <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="id">
          <maml:name>WorkItem</maml:name>
          <maml:description>
            <maml:para>Specifies a work item. Valid values are the work item ID or an instance of Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItem. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: AsOf -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
          <maml:name>AsOf</maml:name>
          <maml:description>
            <maml:para>Returns the field values as they were defined in the work item revision that was the latest revision by the date specified. </maml:para>
          </maml:description>
          <command:parameterValue required="true">DateTime</command:parameterValue>
          <dev:type>
            <maml:name>System.DateTime</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>1/1/0001 12:00:00 AM</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Fields -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Fields</maml:name>
          <maml:description>
            <maml:para>Specifies which fields should be retrieved. When omitted, defaults to a set of standard fields that include Id, Title, Description, some state-related fields and more. To retrive all fields, pass an asterisk ('*') to this argument. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string[]</command:parameterValue>
          <dev:type>
            <maml:name>System.String[]</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>System.AreaPath, System.TeamProject, System.IterationPath, System.WorkItemType, System.State, System.Reason, System.CreatedDate, System.CreatedBy, System.ChangedDate, System.ChangedBy, System.CommentCount, System.Title, System.BoardColumn, System.BoardColumnDone, Microsoft.VSTS.Common.StateChangeDate, Microsoft.VSTS.Common.Priority, Microsoft.VSTS.Common.ValueArea, System.Description, System.Tags</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: IncludeLinks -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>IncludeLinks</maml:name>
          <maml:description>
            <maml:para>Gets information about all links and attachments in the work item. When omitted, only fields are retrieved. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Team -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Team</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeam (if any). For more details, see the Get-TfsTeam cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: TimePrecision -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>TimePrecision</maml:name>
          <maml:description>
            <maml:para>Fetches work items in "time-precision mode": search criteria in WIQL queries take into account time information as well, not only dates. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
      </command:syntaxItem>
      <!-- Parameter Set: Get deleted -->
      <command:syntaxItem tfscmdlets:parameterSet="Get deleted">
        <maml:name>Get-TfsWorkItem</maml:name>
        <!-- Parameter: WorkItem -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="id">
          <maml:name>WorkItem</maml:name>
          <maml:description>
            <maml:para>Specifies a work item. Valid values are the work item ID or an instance of Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItem. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Deleted -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
          <maml:name>Deleted</maml:name>
          <maml:description>
            <maml:para>Gets deleted work items. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Fields -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Fields</maml:name>
          <maml:description>
            <maml:para>Specifies which fields should be retrieved. When omitted, defaults to a set of standard fields that include Id, Title, Description, some state-related fields and more. To retrive all fields, pass an asterisk ('*') to this argument. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string[]</command:parameterValue>
          <dev:type>
            <maml:name>System.String[]</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>System.AreaPath, System.TeamProject, System.IterationPath, System.WorkItemType, System.State, System.Reason, System.CreatedDate, System.CreatedBy, System.ChangedDate, System.ChangedBy, System.CommentCount, System.Title, System.BoardColumn, System.BoardColumnDone, Microsoft.VSTS.Common.StateChangeDate, Microsoft.VSTS.Common.Priority, Microsoft.VSTS.Common.ValueArea, System.Description, System.Tags</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: IncludeLinks -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>IncludeLinks</maml:name>
          <maml:description>
            <maml:para>Gets information about all links and attachments in the work item. When omitted, only fields are retrieved. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Team -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Team</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeam (if any). For more details, see the Get-TfsTeam cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: TimePrecision -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>TimePrecision</maml:name>
          <maml:description>
            <maml:para>Fetches work items in "time-precision mode": search criteria in WIQL queries take into account time information as well, not only dates. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
      </command:syntaxItem>
      <!-- Parameter Set: Simple query -->
      <command:syntaxItem tfscmdlets:parameterSet="Simple query">
        <maml:name>Get-TfsWorkItem</maml:name>
        <!-- Parameter: AreaPath -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>AreaPath</maml:name>
          <maml:description>
            <maml:para>Specifies the area path to look up for in a work item. Wildcards are supported. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: AsOf -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>AsOf</maml:name>
          <maml:description>
            <maml:para>Returns the field values as they were defined in the work item revision that was the latest revision by the date specified. </maml:para>
          </maml:description>
          <command:parameterValue required="true">DateTime</command:parameterValue>
          <dev:type>
            <maml:name>System.DateTime</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>1/1/0001 12:00:00 AM</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: BoardColumn -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>BoardColumn</maml:name>
          <maml:description>
            <maml:para>Specifies the board column to look up for in a work item. Wildcards are supported. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string[]</command:parameterValue>
          <dev:type>
            <maml:name>System.String[]</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: BoardColumnDone -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>BoardColumnDone</maml:name>
          <maml:description>
            <maml:para>Specifies whether the work item is in the sub-column Doing or Done in a board. </maml:para>
          </maml:description>
          <command:parameterValue required="true">bool</command:parameterValue>
          <dev:type>
            <maml:name>System.Boolean</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: ChangedBy -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>ChangedBy</maml:name>
          <maml:description>
            <maml:para>Specifies the name or email of the user that did the latest change to the work item. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: ChangedDate -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>ChangedDate</maml:name>
          <maml:description>
            <maml:para>Specifies the date of the latest change to the work item. </maml:para>
          </maml:description>
          <command:parameterValue required="true">DateTime[]</command:parameterValue>
          <dev:type>
            <maml:name>System.DateTime[]</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: CreatedBy -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>CreatedBy</maml:name>
          <maml:description>
            <maml:para>Specifies the name or email of the user that created the work item. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object[]</command:parameterValue>
          <dev:type>
            <maml:name>System.Object[]</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: CreatedDate -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>CreatedDate</maml:name>
          <maml:description>
            <maml:para>Specifies the date when the work item was created. </maml:para>
          </maml:description>
          <command:parameterValue required="true">DateTime[]</command:parameterValue>
          <dev:type>
            <maml:name>System.DateTime[]</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Description -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Description</maml:name>
          <maml:description>
            <maml:para>Specifies the description to look up for in a work item. Wildcards are supported. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string[]</command:parameterValue>
          <dev:type>
            <maml:name>System.String[]</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Ever -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="WasEver">
          <maml:name>Ever</maml:name>
          <maml:description>
            <maml:para>Switches the query to historical query mode, by changing operators to "WAS EVER" where possible. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Fields -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Fields</maml:name>
          <maml:description>
            <maml:para>Specifies which fields should be retrieved. When omitted, defaults to a set of standard fields that include Id, Title, Description, some state-related fields and more. To retrive all fields, pass an asterisk ('*') to this argument. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string[]</command:parameterValue>
          <dev:type>
            <maml:name>System.String[]</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>System.AreaPath, System.TeamProject, System.IterationPath, System.WorkItemType, System.State, System.Reason, System.CreatedDate, System.CreatedBy, System.ChangedDate, System.ChangedBy, System.CommentCount, System.Title, System.BoardColumn, System.BoardColumnDone, Microsoft.VSTS.Common.StateChangeDate, Microsoft.VSTS.Common.Priority, Microsoft.VSTS.Common.ValueArea, System.Description, System.Tags</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: IncludeLinks -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>IncludeLinks</maml:name>
          <maml:description>
            <maml:para>Gets information about all links and attachments in the work item. When omitted, only fields are retrieved. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: IterationPath -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>IterationPath</maml:name>
          <maml:description>
            <maml:para>Specifies the iteration path to look up for in a work item. Wildcards are supported. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Priority -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Priority</maml:name>
          <maml:description>
            <maml:para>Specifies the priority of the work item. </maml:para>
          </maml:description>
          <command:parameterValue required="true">int[]</command:parameterValue>
          <dev:type>
            <maml:name>System.Int32[]</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Reason -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Reason</maml:name>
          <maml:description>
            <maml:para>Specifies the reason (field 'System.Reason') to look up for in a work item. Wildcards are supported. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string[]</command:parameterValue>
          <dev:type>
            <maml:name>System.String[]</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: State -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>State</maml:name>
          <maml:description>
            <maml:para>Specifies the state (field 'System.State') to look up for in a work item. Wildcards are supported. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string[]</command:parameterValue>
          <dev:type>
            <maml:name>System.String[]</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: StateChangeDate -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>StateChangeDate</maml:name>
          <maml:description>
            <maml:para>Specifies the date of the most recent change to the state of the work item. </maml:para>
          </maml:description>
          <command:parameterValue required="true">DateTime[]</command:parameterValue>
          <dev:type>
            <maml:name>System.DateTime[]</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Tags -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Tags</maml:name>
          <maml:description>
            <maml:para>Specifies the tags to look up for in a work item. When multiple tags are supplied, they are combined with an OR operator - in other works, returns  work items that contain ANY ofthe supplied tags. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string[]</command:parameterValue>
          <dev:type>
            <maml:name>System.String[]</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Team -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Team</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeam (if any). For more details, see the Get-TfsTeam cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: TimePrecision -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>TimePrecision</maml:name>
          <maml:description>
            <maml:para>Fetches work items in "time-precision mode": search criteria in WIQL queries take into account time information as well, not only dates. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Title -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Title</maml:name>
          <maml:description>
            <maml:para>Specifies the title to look up for in a work item. Wildcards are supported. When a wildcard is used, matches a portion of the title (uses the operator "contains" in the WIQL query). Otherwise, matches the whole field with the operator "=", unless -Ever is also specified. In that case, uses the operator "was ever". </maml:para>
          </maml:description>
          <command:parameterValue required="true">string[]</command:parameterValue>
          <dev:type>
            <maml:name>System.String[]</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: ValueArea -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>ValueArea</maml:name>
          <maml:description>
            <maml:para>Specifies the Value Area (field 'Microsoft.VSTS.Common.ValueArea') to look up for in a work item. Wildcards are supported. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string[]</command:parameterValue>
          <dev:type>
            <maml:name>System.String[]</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: WorkItemType -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Type">
          <maml:name>WorkItemType</maml:name>
          <maml:description>
            <maml:para>Specifies the work item type to look up for in a work item. Wildcards are supported. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string[]</command:parameterValue>
          <dev:type>
            <maml:name>System.String[]</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
      <!-- Parameter Set: Query by WIQL -->
      <command:syntaxItem tfscmdlets:parameterSet="Query by WIQL">
        <maml:name>Get-TfsWorkItem</maml:name>
        <!-- Parameter: Wiql -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="named" aliases="Query,QueryText">
          <maml:name>Wiql</maml:name>
          <maml:description>
            <maml:para>Specifies a query written in WIQL (Work Item Query Language) </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Fields -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Fields</maml:name>
          <maml:description>
            <maml:para>Specifies which fields should be retrieved. When omitted, defaults to a set of standard fields that include Id, Title, Description, some state-related fields and more. To retrive all fields, pass an asterisk ('*') to this argument. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string[]</command:parameterValue>
          <dev:type>
            <maml:name>System.String[]</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>System.AreaPath, System.TeamProject, System.IterationPath, System.WorkItemType, System.State, System.Reason, System.CreatedDate, System.CreatedBy, System.ChangedDate, System.ChangedBy, System.CommentCount, System.Title, System.BoardColumn, System.BoardColumnDone, Microsoft.VSTS.Common.StateChangeDate, Microsoft.VSTS.Common.Priority, Microsoft.VSTS.Common.ValueArea, System.Description, System.Tags</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: IncludeLinks -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>IncludeLinks</maml:name>
          <maml:description>
            <maml:para>Gets information about all links and attachments in the work item. When omitted, only fields are retrieved. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Team -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Team</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeam (if any). For more details, see the Get-TfsTeam cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: TimePrecision -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>TimePrecision</maml:name>
          <maml:description>
            <maml:para>Fetches work items in "time-precision mode": search criteria in WIQL queries take into account time information as well, not only dates. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
      </command:syntaxItem>
      <!-- Parameter Set: Query by saved query -->
      <command:syntaxItem tfscmdlets:parameterSet="Query by saved query">
        <maml:name>Get-TfsWorkItem</maml:name>
        <!-- Parameter: SavedQuery -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="named" aliases="QueryPath">
          <maml:name>SavedQuery</maml:name>
          <maml:description>
            <maml:para>Specifies the path of a saved query to be executed. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Fields -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Fields</maml:name>
          <maml:description>
            <maml:para>Specifies which fields should be retrieved. When omitted, defaults to a set of standard fields that include Id, Title, Description, some state-related fields and more. To retrive all fields, pass an asterisk ('*') to this argument. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string[]</command:parameterValue>
          <dev:type>
            <maml:name>System.String[]</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>System.AreaPath, System.TeamProject, System.IterationPath, System.WorkItemType, System.State, System.Reason, System.CreatedDate, System.CreatedBy, System.ChangedDate, System.ChangedBy, System.CommentCount, System.Title, System.BoardColumn, System.BoardColumnDone, Microsoft.VSTS.Common.StateChangeDate, Microsoft.VSTS.Common.Priority, Microsoft.VSTS.Common.ValueArea, System.Description, System.Tags</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: IncludeLinks -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>IncludeLinks</maml:name>
          <maml:description>
            <maml:para>Gets information about all links and attachments in the work item. When omitted, only fields are retrieved. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: QueryParameters -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>QueryParameters</maml:name>
          <maml:description>
            <maml:para>Specifies the path of a saved query to be executed. </maml:para>
          </maml:description>
          <command:parameterValue required="true">Hashtable</command:parameterValue>
          <dev:type>
            <maml:name>System.Collections.Hashtable</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Team -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Team</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeam (if any). For more details, see the Get-TfsTeam cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: TimePrecision -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>TimePrecision</maml:name>
          <maml:description>
            <maml:para>Fetches work items in "time-precision mode": search criteria in WIQL queries take into account time information as well, not only dates. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
      </command:syntaxItem>
      <!-- Parameter Set: Query by filter -->
      <command:syntaxItem tfscmdlets:parameterSet="Query by filter">
        <maml:name>Get-TfsWorkItem</maml:name>
        <!-- Parameter: Where -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
          <maml:name>Where</maml:name>
          <maml:description>
            <maml:para>Specifies a filter clause (the portion of a WIQL query after the WHERE keyword). </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Fields -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Fields</maml:name>
          <maml:description>
            <maml:para>Specifies which fields should be retrieved. When omitted, defaults to a set of standard fields that include Id, Title, Description, some state-related fields and more. To retrive all fields, pass an asterisk ('*') to this argument. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string[]</command:parameterValue>
          <dev:type>
            <maml:name>System.String[]</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>System.AreaPath, System.TeamProject, System.IterationPath, System.WorkItemType, System.State, System.Reason, System.CreatedDate, System.CreatedBy, System.ChangedDate, System.ChangedBy, System.CommentCount, System.Title, System.BoardColumn, System.BoardColumnDone, Microsoft.VSTS.Common.StateChangeDate, Microsoft.VSTS.Common.Priority, Microsoft.VSTS.Common.ValueArea, System.Description, System.Tags</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: IncludeLinks -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>IncludeLinks</maml:name>
          <maml:description>
            <maml:para>Gets information about all links and attachments in the work item. When omitted, only fields are retrieved. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Team -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Team</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeam (if any). For more details, see the Get-TfsTeam cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: TimePrecision -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>TimePrecision</maml:name>
          <maml:description>
            <maml:para>Fetches work items in "time-precision mode": search criteria in WIQL queries take into account time information as well, not only dates. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: WorkItem -->
      <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="id">
        <maml:name>WorkItem</maml:name>
        <maml:description>
          <maml:para>Specifies a work item. Valid values are the work item ID or an instance of Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItem. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="id">
        <maml:name>id</maml:name>
        <maml:description>
          <maml:para>Specifies a work item. Valid values are the work item ID or an instance of Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItem. </maml:para>
          <maml:para>This is an alias of the WorkItem parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Title -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Title</maml:name>
        <maml:description>
          <maml:para>Specifies the title to look up for in a work item. Wildcards are supported. When a wildcard is used, matches a portion of the title (uses the operator "contains" in the WIQL query). Otherwise, matches the whole field with the operator "=", unless -Ever is also specified. In that case, uses the operator "was ever". </maml:para>
        </maml:description>
        <command:parameterValue required="true">string[]</command:parameterValue>
        <dev:type>
          <maml:name>System.String[]</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Description -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Description</maml:name>
        <maml:description>
          <maml:para>Specifies the description to look up for in a work item. Wildcards are supported. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string[]</command:parameterValue>
        <dev:type>
          <maml:name>System.String[]</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: AreaPath -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>AreaPath</maml:name>
        <maml:description>
          <maml:para>Specifies the area path to look up for in a work item. Wildcards are supported. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: IterationPath -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>IterationPath</maml:name>
        <maml:description>
          <maml:para>Specifies the iteration path to look up for in a work item. Wildcards are supported. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: WorkItemType -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Type">
        <maml:name>WorkItemType</maml:name>
        <maml:description>
          <maml:para>Specifies the work item type to look up for in a work item. Wildcards are supported. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string[]</command:parameterValue>
        <dev:type>
          <maml:name>System.String[]</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Type">
        <maml:name>Type</maml:name>
        <maml:description>
          <maml:para>Specifies the work item type to look up for in a work item. Wildcards are supported. </maml:para>
          <maml:para>This is an alias of the WorkItemType parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">string[]</command:parameterValue>
        <dev:type>
          <maml:name>System.String[]</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: State -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>State</maml:name>
        <maml:description>
          <maml:para>Specifies the state (field 'System.State') to look up for in a work item. Wildcards are supported. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string[]</command:parameterValue>
        <dev:type>
          <maml:name>System.String[]</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Reason -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Reason</maml:name>
        <maml:description>
          <maml:para>Specifies the reason (field 'System.Reason') to look up for in a work item. Wildcards are supported. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string[]</command:parameterValue>
        <dev:type>
          <maml:name>System.String[]</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: ValueArea -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>ValueArea</maml:name>
        <maml:description>
          <maml:para>Specifies the Value Area (field 'Microsoft.VSTS.Common.ValueArea') to look up for in a work item. Wildcards are supported. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string[]</command:parameterValue>
        <dev:type>
          <maml:name>System.String[]</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: BoardColumn -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>BoardColumn</maml:name>
        <maml:description>
          <maml:para>Specifies the board column to look up for in a work item. Wildcards are supported. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string[]</command:parameterValue>
        <dev:type>
          <maml:name>System.String[]</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: BoardColumnDone -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>BoardColumnDone</maml:name>
        <maml:description>
          <maml:para>Specifies whether the work item is in the sub-column Doing or Done in a board. </maml:para>
        </maml:description>
        <command:parameterValue required="true">bool</command:parameterValue>
        <dev:type>
          <maml:name>System.Boolean</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: CreatedBy -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>CreatedBy</maml:name>
        <maml:description>
          <maml:para>Specifies the name or email of the user that created the work item. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object[]</command:parameterValue>
        <dev:type>
          <maml:name>System.Object[]</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: CreatedDate -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>CreatedDate</maml:name>
        <maml:description>
          <maml:para>Specifies the date when the work item was created. </maml:para>
        </maml:description>
        <command:parameterValue required="true">DateTime[]</command:parameterValue>
        <dev:type>
          <maml:name>System.DateTime[]</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: ChangedBy -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>ChangedBy</maml:name>
        <maml:description>
          <maml:para>Specifies the name or email of the user that did the latest change to the work item. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: ChangedDate -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>ChangedDate</maml:name>
        <maml:description>
          <maml:para>Specifies the date of the latest change to the work item. </maml:para>
        </maml:description>
        <command:parameterValue required="true">DateTime[]</command:parameterValue>
        <dev:type>
          <maml:name>System.DateTime[]</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: StateChangeDate -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>StateChangeDate</maml:name>
        <maml:description>
          <maml:para>Specifies the date of the most recent change to the state of the work item. </maml:para>
        </maml:description>
        <command:parameterValue required="true">DateTime[]</command:parameterValue>
        <dev:type>
          <maml:name>System.DateTime[]</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Priority -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Priority</maml:name>
        <maml:description>
          <maml:para>Specifies the priority of the work item. </maml:para>
        </maml:description>
        <command:parameterValue required="true">int[]</command:parameterValue>
        <dev:type>
          <maml:name>System.Int32[]</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Tags -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Tags</maml:name>
        <maml:description>
          <maml:para>Specifies the tags to look up for in a work item. When multiple tags are supplied, they are combined with an OR operator - in other works, returns  work items that contain ANY ofthe supplied tags. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string[]</command:parameterValue>
        <dev:type>
          <maml:name>System.String[]</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Ever -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="WasEver">
        <maml:name>Ever</maml:name>
        <maml:description>
          <maml:para>Switches the query to historical query mode, by changing operators to "WAS EVER" where possible. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="WasEver">
        <maml:name>WasEver</maml:name>
        <maml:description>
          <maml:para>Switches the query to historical query mode, by changing operators to "WAS EVER" where possible. </maml:para>
          <maml:para>This is an alias of the Ever parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Revision -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="rev">
        <maml:name>Revision</maml:name>
        <maml:description>
          <maml:para>B Specifies a work item revision number to retrieve. When omitted, returns the latest revision of the work item. </maml:para>
        </maml:description>
        <command:parameterValue required="true">int</command:parameterValue>
        <dev:type>
          <maml:name>System.Int32</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>0</dev:defaultValue>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="rev">
        <maml:name>rev</maml:name>
        <maml:description>
          <maml:para>B Specifies a work item revision number to retrieve. When omitted, returns the latest revision of the work item. </maml:para>
          <maml:para>This is an alias of the Revision parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">int</command:parameterValue>
        <dev:type>
          <maml:name>System.Int32</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>0</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: AsOf -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
        <maml:name>AsOf</maml:name>
        <maml:description>
          <maml:para>Returns the field values as they were defined in the work item revision that was the latest revision by the date specified. </maml:para>
        </maml:description>
        <command:parameterValue required="true">DateTime</command:parameterValue>
        <dev:type>
          <maml:name>System.DateTime</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>1/1/0001 12:00:00 AM</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Wiql -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="named" aliases="Query,QueryText">
        <maml:name>Wiql</maml:name>
        <maml:description>
          <maml:para>Specifies a query written in WIQL (Work Item Query Language) </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="true" globbing="false" pipelineInput="false" position="named" aliases="Query,QueryText">
        <maml:name>Query</maml:name>
        <maml:description>
          <maml:para>Specifies a query written in WIQL (Work Item Query Language) </maml:para>
          <maml:para>This is an alias of the Wiql parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="true" globbing="false" pipelineInput="false" position="named" aliases="Query,QueryText">
        <maml:name>QueryText</maml:name>
        <maml:description>
          <maml:para>Specifies a query written in WIQL (Work Item Query Language) </maml:para>
          <maml:para>This is an alias of the Wiql parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: SavedQuery -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="named" aliases="QueryPath">
        <maml:name>SavedQuery</maml:name>
        <maml:description>
          <maml:para>Specifies the path of a saved query to be executed. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="true" globbing="false" pipelineInput="false" position="named" aliases="QueryPath">
        <maml:name>QueryPath</maml:name>
        <maml:description>
          <maml:para>Specifies the path of a saved query to be executed. </maml:para>
          <maml:para>This is an alias of the SavedQuery parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: QueryParameters -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>QueryParameters</maml:name>
        <maml:description>
          <maml:para>Specifies the path of a saved query to be executed. </maml:para>
        </maml:description>
        <command:parameterValue required="true">Hashtable</command:parameterValue>
        <dev:type>
          <maml:name>System.Collections.Hashtable</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Fields -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Fields</maml:name>
        <maml:description>
          <maml:para>Specifies which fields should be retrieved. When omitted, defaults to a set of standard fields that include Id, Title, Description, some state-related fields and more. To retrive all fields, pass an asterisk ('*') to this argument. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string[]</command:parameterValue>
        <dev:type>
          <maml:name>System.String[]</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>System.AreaPath, System.TeamProject, System.IterationPath, System.WorkItemType, System.State, System.Reason, System.CreatedDate, System.CreatedBy, System.ChangedDate, System.ChangedBy, System.CommentCount, System.Title, System.BoardColumn, System.BoardColumnDone, Microsoft.VSTS.Common.StateChangeDate, Microsoft.VSTS.Common.Priority, Microsoft.VSTS.Common.ValueArea, System.Description, System.Tags</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Where -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
        <maml:name>Where</maml:name>
        <maml:description>
          <maml:para>Specifies a filter clause (the portion of a WIQL query after the WHERE keyword). </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: TimePrecision -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>TimePrecision</maml:name>
        <maml:description>
          <maml:para>Fetches work items in "time-precision mode": search criteria in WIQL queries take into account time information as well, not only dates. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: ShowWindow -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>ShowWindow</maml:name>
        <maml:description>
          <maml:para>Opens the specified work item in the default web browser. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Deleted -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
        <maml:name>Deleted</maml:name>
        <maml:description>
          <maml:para>Gets deleted work items. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: IncludeLinks -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>IncludeLinks</maml:name>
        <maml:description>
          <maml:para>Gets information about all links and attachments in the work item. When omitted, only fields are retrieved. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Team -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Team</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeam (if any). For more details, see the Get-TfsTeam cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Organization</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          <maml:para>This is an alias of the Collection parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Server -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Server</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies a work item. Valid values are the work item ID or an instance of Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItem. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: WorkItem -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItem</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/WorkItem/Get-TfsWorkItem</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Move-TfsWorkItem -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="WorkItem">
    <command:details>
      <command:name>Move-TfsWorkItem</command:name>
      <command:verb>Move</command:verb>
      <command:noun>TfsWorkItem</command:noun>
      <maml:description>
        <maml:para>Moves a work item to a different team project in the same collection. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Move-TfsWorkItem</maml:name>
        <!-- Parameter: WorkItem -->
        <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Id">
          <maml:name>WorkItem</maml:name>
          <maml:description>
            <maml:para>Specifies a work item. Valid values are the work item ID or an instance of Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItem. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="1" aliases="Destination">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the team project where the work item will be moved to. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Area -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Area</maml:name>
          <maml:description>
            <maml:para>Specifies the area path in the destination project where the work item will be moved to. When omitted, the work item is moved to the root area path in the destination project. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Comment -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Comment</maml:name>
          <maml:description>
            <maml:para>Specifies a comment to be added to the history </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Iteration -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Iteration</maml:name>
          <maml:description>
            <maml:para>Specifies the iteration path in the destination project where the work item will be moved to. When omitted, the work item is moved to the root iteration path in the destination project. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Passthru -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Passthru</maml:name>
          <maml:description>
            <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: State -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>State</maml:name>
          <maml:description>
            <maml:para>Specifies a new state for the work item in the destination project. When omitted, it retains the current state. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: WorkItem -->
      <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Id">
        <maml:name>WorkItem</maml:name>
        <maml:description>
          <maml:para>Specifies a work item. Valid values are the work item ID or an instance of Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItem. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Id">
        <maml:name>Id</maml:name>
        <maml:description>
          <maml:para>Specifies a work item. Valid values are the work item ID or an instance of Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItem. </maml:para>
          <maml:para>This is an alias of the WorkItem parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="1" aliases="Destination">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the team project where the work item will be moved to. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="true" globbing="false" pipelineInput="false" position="1" aliases="Destination">
        <maml:name>Destination</maml:name>
        <maml:description>
          <maml:para>Specifies the team project where the work item will be moved to. </maml:para>
          <maml:para>This is an alias of the Project parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Area -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Area</maml:name>
        <maml:description>
          <maml:para>Specifies the area path in the destination project where the work item will be moved to. When omitted, the work item is moved to the root area path in the destination project. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Iteration -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Iteration</maml:name>
        <maml:description>
          <maml:para>Specifies the iteration path in the destination project where the work item will be moved to. When omitted, the work item is moved to the root iteration path in the destination project. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: State -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>State</maml:name>
        <maml:description>
          <maml:para>Specifies a new state for the work item in the destination project. When omitted, it retains the current state. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Comment -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Comment</maml:name>
        <maml:description>
          <maml:para>Specifies a comment to be added to the history </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Passthru -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Passthru</maml:name>
        <maml:description>
          <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Organization</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          <maml:para>This is an alias of the Collection parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Server -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Server</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies a work item. Valid values are the work item ID or an instance of Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItem. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: WorkItem -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItem</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/WorkItem/Move-TfsWorkItem</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: New-TfsWorkItem -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="WorkItem">
    <command:details>
      <command:name>New-TfsWorkItem</command:name>
      <command:verb>New</command:verb>
      <command:noun>TfsWorkItem</command:noun>
      <maml:description>
        <maml:para>Creates a new work item. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>New-TfsWorkItem</maml:name>
        <!-- Parameter: Type -->
        <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0">
          <maml:name>Type</maml:name>
          <maml:description>
            <maml:para>Specifies the type of the new work item. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: AreaPath -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>AreaPath</maml:name>
          <maml:description>
            <maml:para>Specifies the area path of the work item. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: AssignedTo -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>AssignedTo</maml:name>
          <maml:description>
            <maml:para>Specifies the user this work item is assigned to. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: BoardColumn -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>BoardColumn</maml:name>
          <maml:description>
            <maml:para>Specifies the board column of the work item. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: BoardColumnDone -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>BoardColumnDone</maml:name>
          <maml:description>
            <maml:para>Specifies whether the work item is in the sub-column Doing or Done in a board. </maml:para>
          </maml:description>
          <command:parameterValue required="true">bool</command:parameterValue>
          <dev:type>
            <maml:name>System.Boolean</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: BoardLane -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>BoardLane</maml:name>
          <maml:description>
            <maml:para>Specifies the board lane of the work item </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: BypassRules -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>BypassRules</maml:name>
          <maml:description>
            <maml:para>Bypasses any rule validation when saving the work item. Use it with caution, as this may leave the work item in an invalid state. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Description -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Description</maml:name>
          <maml:description>
            <maml:para>Specifies the description of the work item. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Fields -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Fields</maml:name>
          <maml:description>
            <maml:para>Specifies the names and the corresponding values for the fields to be set in the work item and whose values were not supplied in the other arguments to this cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">Hashtable</command:parameterValue>
          <dev:type>
            <maml:name>System.Collections.Hashtable</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: IterationPath -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>IterationPath</maml:name>
          <maml:description>
            <maml:para>Specifies the iteration path of the work item. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Passthru -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Passthru</maml:name>
          <maml:description>
            <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Priority -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Priority</maml:name>
          <maml:description>
            <maml:para>Specifies the priority of the work item. </maml:para>
          </maml:description>
          <command:parameterValue required="true">int</command:parameterValue>
          <dev:type>
            <maml:name>System.Int32</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>0</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Reason -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Reason</maml:name>
          <maml:description>
            <maml:para>Specifies the reason (field 'System.Reason') of the work item. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: State -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>State</maml:name>
          <maml:description>
            <maml:para>Specifies the state of the work item. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Tags -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Tags</maml:name>
          <maml:description>
            <maml:para>Specifies the tags of the work item. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string[]</command:parameterValue>
          <dev:type>
            <maml:name>System.String[]</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Team -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Team</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeam (if any). For more details, see the Get-TfsTeam cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Title -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Title</maml:name>
          <maml:description>
            <maml:para>Specifies the title of the work item. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: ValueArea -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>ValueArea</maml:name>
          <maml:description>
            <maml:para>Specifies the Value Area of the work item. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Type -->
      <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0">
        <maml:name>Type</maml:name>
        <maml:description>
          <maml:para>Specifies the type of the new work item. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Title -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Title</maml:name>
        <maml:description>
          <maml:para>Specifies the title of the work item. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Description -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Description</maml:name>
        <maml:description>
          <maml:para>Specifies the description of the work item. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: AreaPath -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>AreaPath</maml:name>
        <maml:description>
          <maml:para>Specifies the area path of the work item. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: IterationPath -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>IterationPath</maml:name>
        <maml:description>
          <maml:para>Specifies the iteration path of the work item. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: AssignedTo -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>AssignedTo</maml:name>
        <maml:description>
          <maml:para>Specifies the user this work item is assigned to. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: State -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>State</maml:name>
        <maml:description>
          <maml:para>Specifies the state of the work item. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Reason -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Reason</maml:name>
        <maml:description>
          <maml:para>Specifies the reason (field 'System.Reason') of the work item. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: ValueArea -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>ValueArea</maml:name>
        <maml:description>
          <maml:para>Specifies the Value Area of the work item. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: BoardColumn -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>BoardColumn</maml:name>
        <maml:description>
          <maml:para>Specifies the board column of the work item. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: BoardColumnDone -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>BoardColumnDone</maml:name>
        <maml:description>
          <maml:para>Specifies whether the work item is in the sub-column Doing or Done in a board. </maml:para>
        </maml:description>
        <command:parameterValue required="true">bool</command:parameterValue>
        <dev:type>
          <maml:name>System.Boolean</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: BoardLane -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>BoardLane</maml:name>
        <maml:description>
          <maml:para>Specifies the board lane of the work item </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Priority -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Priority</maml:name>
        <maml:description>
          <maml:para>Specifies the priority of the work item. </maml:para>
        </maml:description>
        <command:parameterValue required="true">int</command:parameterValue>
        <dev:type>
          <maml:name>System.Int32</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>0</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Tags -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Tags</maml:name>
        <maml:description>
          <maml:para>Specifies the tags of the work item. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string[]</command:parameterValue>
        <dev:type>
          <maml:name>System.String[]</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Fields -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Fields</maml:name>
        <maml:description>
          <maml:para>Specifies the names and the corresponding values for the fields to be set in the work item and whose values were not supplied in the other arguments to this cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">Hashtable</command:parameterValue>
        <dev:type>
          <maml:name>System.Collections.Hashtable</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: BypassRules -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>BypassRules</maml:name>
        <maml:description>
          <maml:para>Bypasses any rule validation when saving the work item. Use it with caution, as this may leave the work item in an invalid state. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Passthru -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Passthru</maml:name>
        <maml:description>
          <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Team -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Team</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeam (if any). For more details, see the Get-TfsTeam cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Organization</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          <maml:para>This is an alias of the Collection parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Server -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Server</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the type of the new work item. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: WorkItem -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItem</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/WorkItem/New-TfsWorkItem</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Remove-TfsWorkItem -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="WorkItem">
    <command:details>
      <command:name>Remove-TfsWorkItem</command:name>
      <command:verb>Remove</command:verb>
      <command:noun>TfsWorkItem</command:noun>
      <maml:description>
        <maml:para>Deletes a work item from a team project collection. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Remove-TfsWorkItem</maml:name>
        <!-- Parameter: WorkItem -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Id">
          <maml:name>WorkItem</maml:name>
          <maml:description>
            <maml:para>Specifies the work item to remove. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Destroy -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Destroy</maml:name>
          <maml:description>
            <maml:para>Permanently deletes the work item, without sending it to the recycle bin. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Force -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Force</maml:name>
          <maml:description>
            <maml:para>Forces the exclusion of the item. When omitted, the command prompts for confirmation prior to deleting the item. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: WorkItem -->
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Id">
        <maml:name>WorkItem</maml:name>
        <maml:description>
          <maml:para>Specifies the work item to remove. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Id">
        <maml:name>Id</maml:name>
        <maml:description>
          <maml:para>Specifies the work item to remove. </maml:para>
          <maml:para>This is an alias of the WorkItem parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Destroy -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Destroy</maml:name>
        <maml:description>
          <maml:para>Permanently deletes the work item, without sending it to the recycle bin. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Force -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Force</maml:name>
        <maml:description>
          <maml:para>Forces the exclusion of the item. When omitted, the command prompts for confirmation prior to deleting the item. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Organization</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          <maml:para>This is an alias of the Collection parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Server -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Server</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the work item to remove. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues />
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/WorkItem/Remove-TfsWorkItem</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Search-TfsWorkItem -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="WorkItem">
    <command:details>
      <command:name>Search-TfsWorkItem</command:name>
      <command:verb>Search</command:verb>
      <command:noun>TfsWorkItem</command:noun>
      <maml:description>
        <maml:para>Gets the contents of one or more work items. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Search-TfsWorkItem</maml:name>
        <!-- Parameter: Query -->
        <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0">
          <maml:name>Query</maml:name>
          <maml:description>
            <maml:para>Specifies the text to search for. Supports the Quick Filter syntax described in https://docs.microsoft.com/en-us/azure/devops/project/search/advanced-work-item-search-syntax </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Results -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Results</maml:name>
          <maml:description>
            <maml:para>Specifies the maximum quantity of results. Supports between 1 and 1000 results. When omitted, defaults to 100. Currently this cmdlet does not support result pagination. </maml:para>
          </maml:description>
          <command:parameterValue required="true">int</command:parameterValue>
          <dev:type>
            <maml:name>System.Int32</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>100</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Query -->
      <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0">
        <maml:name>Query</maml:name>
        <maml:description>
          <maml:para>Specifies the text to search for. Supports the Quick Filter syntax described in https://docs.microsoft.com/en-us/azure/devops/project/search/advanced-work-item-search-syntax </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Results -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Results</maml:name>
        <maml:description>
          <maml:para>Specifies the maximum quantity of results. Supports between 1 and 1000 results. When omitted, defaults to 100. Currently this cmdlet does not support result pagination. </maml:para>
        </maml:description>
        <command:parameterValue required="true">int</command:parameterValue>
        <dev:type>
          <maml:name>System.Int32</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>100</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Organization</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          <maml:para>This is an alias of the Collection parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Server -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Server</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the text to search for. Supports the Quick Filter syntax described in https://docs.microsoft.com/en-us/azure/devops/project/search/advanced-work-item-search-syntax </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: WorkItem -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItem</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/WorkItem/Search-TfsWorkItem</maml:uri>
      </maml:navigationLink>
      <maml:navigationLink>
        <maml:linkText>https://docs.microsoft.com/en-us/azure/devops/project/search/advanced-work-item-search-syntax</maml:linkText>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Set-TfsWorkItem -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="WorkItem">
    <command:details>
      <command:name>Set-TfsWorkItem</command:name>
      <command:verb>Set</command:verb>
      <command:noun>TfsWorkItem</command:noun>
      <maml:description>
        <maml:para>Sets the contents of one or more work items. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Set-TfsWorkItem</maml:name>
        <!-- Parameter: WorkItem -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="id">
          <maml:name>WorkItem</maml:name>
          <maml:description>
            <maml:para>Specifies a work item. Valid values are the work item ID or an instance of Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItem. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: AreaPath -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>AreaPath</maml:name>
          <maml:description>
            <maml:para>Specifies the area path of the work item. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: AssignedTo -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>AssignedTo</maml:name>
          <maml:description>
            <maml:para>Specifies the user this work item is assigned to. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: BoardColumn -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>BoardColumn</maml:name>
          <maml:description>
            <maml:para>Specifies the board column of the work item. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: BoardColumnDone -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>BoardColumnDone</maml:name>
          <maml:description>
            <maml:para>Specifies whether the work item is in the sub-column Doing or Done in a board. </maml:para>
          </maml:description>
          <command:parameterValue required="true">bool</command:parameterValue>
          <dev:type>
            <maml:name>System.Boolean</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: BoardLane -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>BoardLane</maml:name>
          <maml:description>
            <maml:para>Specifies the board lane of the work item </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: BypassRules -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>BypassRules</maml:name>
          <maml:description>
            <maml:para>Bypasses any rule validation when saving the work item. Use it with caution, as this may leave the work item in an invalid state. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Description -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Description</maml:name>
          <maml:description>
            <maml:para>Specifies the description of the work item. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Fields -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Fields</maml:name>
          <maml:description>
            <maml:para>Specifies the names and the corresponding values for the fields to be set in the work item and whose values were not supplied in the other arguments to this cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">Hashtable</command:parameterValue>
          <dev:type>
            <maml:name>System.Collections.Hashtable</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: IterationPath -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>IterationPath</maml:name>
          <maml:description>
            <maml:para>Specifies the iteration path of the work item. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Passthru -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Passthru</maml:name>
          <maml:description>
            <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Priority -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Priority</maml:name>
          <maml:description>
            <maml:para>Specifies the priority of the work item. </maml:para>
          </maml:description>
          <command:parameterValue required="true">int</command:parameterValue>
          <dev:type>
            <maml:name>System.Int32</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>0</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Reason -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Reason</maml:name>
          <maml:description>
            <maml:para>Specifies the reason (field 'System.Reason') of the work item. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: State -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>State</maml:name>
          <maml:description>
            <maml:para>Specifies the state of the work item. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Tags -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Tags</maml:name>
          <maml:description>
            <maml:para>Specifies the tags of the work item. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string[]</command:parameterValue>
          <dev:type>
            <maml:name>System.String[]</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: 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: AreaPath -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>AreaPath</maml:name>
        <maml:description>
          <maml:para>Specifies the area path of the work item. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: IterationPath -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>IterationPath</maml:name>
        <maml:description>
          <maml:para>Specifies the iteration path of the work item. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: AssignedTo -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>AssignedTo</maml:name>
        <maml:description>
          <maml:para>Specifies the user this work item is assigned to. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: State -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>State</maml:name>
        <maml:description>
          <maml:para>Specifies the state of the work item. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Reason -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Reason</maml:name>
        <maml:description>
          <maml:para>Specifies the reason (field 'System.Reason') of the work item. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: ValueArea -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>ValueArea</maml:name>
        <maml:description>
          <maml:para>Specifies the Value Area of the work item. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: BoardColumn -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>BoardColumn</maml:name>
        <maml:description>
          <maml:para>Specifies the board column of the work item. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: BoardColumnDone -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>BoardColumnDone</maml:name>
        <maml:description>
          <maml:para>Specifies whether the work item is in the sub-column Doing or Done in a board. </maml:para>
        </maml:description>
        <command:parameterValue required="true">bool</command:parameterValue>
        <dev:type>
          <maml:name>System.Boolean</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: BoardLane -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>BoardLane</maml:name>
        <maml:description>
          <maml:para>Specifies the board lane of the work item </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Priority -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Priority</maml:name>
        <maml:description>
          <maml:para>Specifies the priority of the work item. </maml:para>
        </maml:description>
        <command:parameterValue required="true">int</command:parameterValue>
        <dev:type>
          <maml:name>System.Int32</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>0</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Tags -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Tags</maml:name>
        <maml:description>
          <maml:para>Specifies the tags of the work item. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string[]</command:parameterValue>
        <dev:type>
          <maml:name>System.String[]</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Fields -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Fields</maml:name>
        <maml:description>
          <maml:para>Specifies the names and the corresponding values for the fields to be set in the work item and whose values were not supplied in the other arguments to this cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">Hashtable</command:parameterValue>
        <dev:type>
          <maml:name>System.Collections.Hashtable</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: BypassRules -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>BypassRules</maml:name>
        <maml:description>
          <maml:para>Bypasses any rule validation when saving the work item. Use it with caution, as this may leave the work item in an invalid state. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Passthru -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Passthru</maml:name>
        <maml:description>
          <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Organization</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          <maml:para>This is an alias of the Collection parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Server -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Server</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies a work item. Valid values are the work item ID or an instance of Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItem. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: WorkItem -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItem</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/WorkItem/Set-TfsWorkItem</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Export-TfsWorkItemAttachment -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="WorkItem.Linking">
    <command:details>
      <command:name>Export-TfsWorkItemAttachment</command:name>
      <command:verb>Export</command:verb>
      <command:noun>TfsWorkItemAttachment</command:noun>
      <maml:description>
        <maml:para>Downloads one or more attachments from work items </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Export-TfsWorkItemAttachment</maml:name>
        <!-- Parameter: Attachment -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="0">
          <maml:name>Attachment</maml:name>
          <maml:description>
            <maml:para>Specifies the attachment to download. Wildcards are supported. When omitted, all attachments in the specified work item are downloaded. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>*</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: WorkItem -->
        <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="1">
          <maml:name>WorkItem</maml:name>
          <maml:description>
            <maml:para>Specifies a work item. Valid values are the work item ID or an instance of Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItem. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named" aliases="Organization">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Destination -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Destination</maml:name>
          <maml:description>
            <maml:para>Specifies the directory to save the attachment to. When omitted, defaults to the current directory. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Force -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Force</maml:name>
          <maml:description>
            <maml:para>Allows the cmdlet to overwrite an existing file. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Attachment -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0">
        <maml:name>Attachment</maml:name>
        <maml:description>
          <maml:para>Specifies the attachment to download. Wildcards are supported. When omitted, all attachments in the specified work item are downloaded. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>*</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: WorkItem -->
      <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="1">
        <maml:name>WorkItem</maml:name>
        <maml:description>
          <maml:para>Specifies a work item. Valid values are the work item ID or an instance of Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItem. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Destination -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Destination</maml:name>
        <maml:description>
          <maml:para>Specifies the directory to save the attachment to. When omitted, defaults to the current directory. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Force -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Force</maml:name>
        <maml:description>
          <maml:para>Allows the cmdlet to overwrite an existing file. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named" aliases="Organization">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named" aliases="Organization">
        <maml:name>Organization</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          <maml:para>This is an alias of the Collection parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Server -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Server</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies a work item. Valid values are the work item ID or an instance of Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItem. </maml:para>
        </maml:description>
      </command:inputType>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues />
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/WorkItem/Linking/Export-TfsWorkItemAttachment</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Get-TfsWorkItemHistory -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="WorkItem.History">
    <command:details>
      <command:name>Get-TfsWorkItemHistory</command:name>
      <command:verb>Get</command:verb>
      <command:noun>TfsWorkItemHistory</command:noun>
      <maml:description>
        <maml:para>Gets the history of changes of a work item. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Get-TfsWorkItemHistory</maml:name>
        <!-- Parameter: WorkItem -->
        <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="id">
          <maml:name>WorkItem</maml:name>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: WorkItem -->
      <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="id">
        <maml:name>WorkItem</maml:name>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="id">
        <maml:name>id</maml:name>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>This is an alias of the WorkItem parameter.</maml:para>
        </maml:description>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Organization</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          <maml:para>This is an alias of the Collection parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Server -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Server</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: WorkItemHistoryEntry -->
      <command:returnValue>
        <dev:type>
          <maml:name>TfsCmdlets.Models.WorkItemHistoryEntry</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/WorkItem/History/Get-TfsWorkItemHistory</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Add-TfsWorkItemLink -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="WorkItem.Linking">
    <command:details>
      <command:name>Add-TfsWorkItemLink</command:name>
      <command:verb>Add</command:verb>
      <command:noun>TfsWorkItemLink</command:noun>
      <maml:description>
        <maml:para>Adds a link between two work items. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: Link to work item -->
      <command:syntaxItem tfscmdlets:parameterSet="Link to work item">
        <maml:name>Add-TfsWorkItemLink</maml:name>
        <!-- Parameter: WorkItem -->
        <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Id,From">
          <maml:name>WorkItem</maml:name>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: TargetWorkItem -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="1" aliases="To">
          <maml:name>TargetWorkItem</maml:name>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: LinkType -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="2" aliases="EndLinkType,Type">
          <maml:name>LinkType</maml:name>
          <maml:description>
            <maml:para>Possible values: All, Parent, Child, Related, Predecessor, Successor, Duplicate, DuplicateOf, Tests, TestedBy, TestCase, SharedSteps, References, ReferencedBy, ProducesFor, ConsumesFrom, RemoteRelated, AttachedFile, Hyperlink, ArtifactLink</maml:para>
          </maml:description>
          <command:parameterValue required="true">WorkItemLinkType</command:parameterValue>
          <dev:type>
            <maml:name>TfsCmdlets.WorkItemLinkType</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>All</dev:defaultValue>
          <command:parameterValueGroup>
            <command:parameterValue required="false" variableLength="false">All</command:parameterValue>
            <command:parameterValue required="false" variableLength="false">Parent</command:parameterValue>
            <command:parameterValue required="false" variableLength="false">Child</command:parameterValue>
            <command:parameterValue required="false" variableLength="false">Related</command:parameterValue>
            <command:parameterValue required="false" variableLength="false">Predecessor</command:parameterValue>
            <command:parameterValue required="false" variableLength="false">Successor</command:parameterValue>
            <command:parameterValue required="false" variableLength="false">Duplicate</command:parameterValue>
            <command:parameterValue required="false" variableLength="false">DuplicateOf</command:parameterValue>
            <command:parameterValue required="false" variableLength="false">Tests</command:parameterValue>
            <command:parameterValue required="false" variableLength="false">TestedBy</command:parameterValue>
            <command:parameterValue required="false" variableLength="false">TestCase</command:parameterValue>
            <command:parameterValue required="false" variableLength="false">SharedSteps</command:parameterValue>
            <command:parameterValue required="false" variableLength="false">References</command:parameterValue>
            <command:parameterValue required="false" variableLength="false">ReferencedBy</command:parameterValue>
            <command:parameterValue required="false" variableLength="false">ProducesFor</command:parameterValue>
            <command:parameterValue required="false" variableLength="false">ConsumesFrom</command:parameterValue>
            <command:parameterValue required="false" variableLength="false">RemoteRelated</command:parameterValue>
            <command:parameterValue required="false" variableLength="false">AttachedFile</command:parameterValue>
            <command:parameterValue required="false" variableLength="false">Hyperlink</command:parameterValue>
            <command:parameterValue required="false" variableLength="false">ArtifactLink</command:parameterValue>
          </command:parameterValueGroup>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Comment -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Comment</maml:name>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Passthru -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Passthru</maml:name>
          <maml:description>
            <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: WorkItem -->
      <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Id,From">
        <maml:name>WorkItem</maml:name>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Id,From">
        <maml:name>Id</maml:name>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>This is an alias of the WorkItem parameter.</maml:para>
        </maml:description>
      </command:parameter>
      <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Id,From">
        <maml:name>From</maml:name>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>This is an alias of the WorkItem parameter.</maml:para>
        </maml:description>
      </command:parameter>
      <!-- Parameter: TargetWorkItem -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="1" aliases="To">
        <maml:name>TargetWorkItem</maml:name>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="true" globbing="false" pipelineInput="false" position="1" aliases="To">
        <maml:name>To</maml:name>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>This is an alias of the TargetWorkItem parameter.</maml:para>
        </maml:description>
      </command:parameter>
      <!-- Parameter: LinkType -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="2" aliases="EndLinkType,Type">
        <maml:name>LinkType</maml:name>
        <maml:description>
          <maml:para>Possible values: All, Parent, Child, Related, Predecessor, Successor, Duplicate, DuplicateOf, Tests, TestedBy, TestCase, SharedSteps, References, ReferencedBy, ProducesFor, ConsumesFrom, RemoteRelated, AttachedFile, Hyperlink, ArtifactLink</maml:para>
        </maml:description>
        <command:parameterValue required="true">WorkItemLinkType</command:parameterValue>
        <dev:type>
          <maml:name>TfsCmdlets.WorkItemLinkType</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>All</dev:defaultValue>
        <command:parameterValueGroup>
          <command:parameterValue required="false" variableLength="false">All</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">Parent</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">Child</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">Related</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">Predecessor</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">Successor</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">Duplicate</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">DuplicateOf</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">Tests</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">TestedBy</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">TestCase</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">SharedSteps</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">References</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">ReferencedBy</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">ProducesFor</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">ConsumesFrom</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">RemoteRelated</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">AttachedFile</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">Hyperlink</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">ArtifactLink</command:parameterValue>
        </command:parameterValueGroup>
      </command:parameter>
      <command:parameter required="true" globbing="false" pipelineInput="false" position="2" aliases="EndLinkType,Type">
        <maml:name>EndLinkType</maml:name>
        <maml:description>
          <maml:para>Possible values: All, Parent, Child, Related, Predecessor, Successor, Duplicate, DuplicateOf, Tests, TestedBy, TestCase, SharedSteps, References, ReferencedBy, ProducesFor, ConsumesFrom, RemoteRelated, AttachedFile, Hyperlink, ArtifactLink</maml:para>
          <maml:para>This is an alias of the LinkType parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">WorkItemLinkType</command:parameterValue>
        <dev:type>
          <maml:name>TfsCmdlets.WorkItemLinkType</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>All</dev:defaultValue>
        <command:parameterValueGroup>
          <command:parameterValue required="false" variableLength="false">All</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">Parent</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">Child</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">Related</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">Predecessor</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">Successor</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">Duplicate</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">DuplicateOf</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">Tests</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">TestedBy</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">TestCase</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">SharedSteps</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">References</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">ReferencedBy</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">ProducesFor</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">ConsumesFrom</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">RemoteRelated</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">AttachedFile</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">Hyperlink</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">ArtifactLink</command:parameterValue>
        </command:parameterValueGroup>
      </command:parameter>
      <command:parameter required="true" globbing="false" pipelineInput="false" position="2" aliases="EndLinkType,Type">
        <maml:name>Type</maml:name>
        <maml:description>
          <maml:para>Possible values: All, Parent, Child, Related, Predecessor, Successor, Duplicate, DuplicateOf, Tests, TestedBy, TestCase, SharedSteps, References, ReferencedBy, ProducesFor, ConsumesFrom, RemoteRelated, AttachedFile, Hyperlink, ArtifactLink</maml:para>
          <maml:para>This is an alias of the LinkType parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">WorkItemLinkType</command:parameterValue>
        <dev:type>
          <maml:name>TfsCmdlets.WorkItemLinkType</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>All</dev:defaultValue>
        <command:parameterValueGroup>
          <command:parameterValue required="false" variableLength="false">All</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">Parent</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">Child</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">Related</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">Predecessor</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">Successor</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">Duplicate</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">DuplicateOf</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">Tests</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">TestedBy</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">TestCase</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">SharedSteps</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">References</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">ReferencedBy</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">ProducesFor</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">ConsumesFrom</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">RemoteRelated</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">AttachedFile</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">Hyperlink</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">ArtifactLink</command:parameterValue>
        </command:parameterValueGroup>
      </command:parameter>
      <!-- Parameter: Passthru -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Passthru</maml:name>
        <maml:description>
          <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Comment -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Comment</maml:name>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Organization</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          <maml:para>This is an alias of the Collection parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Server -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Server</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues />
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/WorkItem/Linking/Add-TfsWorkItemLink</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Get-TfsWorkItemLink -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="WorkItem.Linking">
    <command:details>
      <command:name>Get-TfsWorkItemLink</command:name>
      <command:verb>Get</command:verb>
      <command:noun>TfsWorkItemLink</command:noun>
      <maml:description>
        <maml:para>Gets the links in a work item. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Get-TfsWorkItemLink</maml:name>
        <!-- Parameter: WorkItem -->
        <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="id">
          <maml:name>WorkItem</maml:name>
          <maml:description>
            <maml:para>Specifies a work item. Valid values are the work item ID or an instance of Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItem. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named" aliases="Organization">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: LinkType -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>LinkType</maml:name>
          <maml:description>
            <maml:para>Returns only the specified link types. When omitted, returns all link types. </maml:para>
            <maml:para>Possible values: All, Parent, Child, Related, Predecessor, Successor, Duplicate, DuplicateOf, Tests, TestedBy, TestCase, SharedSteps, References, ReferencedBy, ProducesFor, ConsumesFrom, RemoteRelated, AttachedFile, Hyperlink, ArtifactLink</maml:para>
          </maml:description>
          <command:parameterValue required="true">WorkItemLinkType</command:parameterValue>
          <dev:type>
            <maml:name>TfsCmdlets.WorkItemLinkType</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>All</dev:defaultValue>
          <command:parameterValueGroup>
            <command:parameterValue required="false" variableLength="false">All</command:parameterValue>
            <command:parameterValue required="false" variableLength="false">Parent</command:parameterValue>
            <command:parameterValue required="false" variableLength="false">Child</command:parameterValue>
            <command:parameterValue required="false" variableLength="false">Related</command:parameterValue>
            <command:parameterValue required="false" variableLength="false">Predecessor</command:parameterValue>
            <command:parameterValue required="false" variableLength="false">Successor</command:parameterValue>
            <command:parameterValue required="false" variableLength="false">Duplicate</command:parameterValue>
            <command:parameterValue required="false" variableLength="false">DuplicateOf</command:parameterValue>
            <command:parameterValue required="false" variableLength="false">Tests</command:parameterValue>
            <command:parameterValue required="false" variableLength="false">TestedBy</command:parameterValue>
            <command:parameterValue required="false" variableLength="false">TestCase</command:parameterValue>
            <command:parameterValue required="false" variableLength="false">SharedSteps</command:parameterValue>
            <command:parameterValue required="false" variableLength="false">References</command:parameterValue>
            <command:parameterValue required="false" variableLength="false">ReferencedBy</command:parameterValue>
            <command:parameterValue required="false" variableLength="false">ProducesFor</command:parameterValue>
            <command:parameterValue required="false" variableLength="false">ConsumesFrom</command:parameterValue>
            <command:parameterValue required="false" variableLength="false">RemoteRelated</command:parameterValue>
            <command:parameterValue required="false" variableLength="false">AttachedFile</command:parameterValue>
            <command:parameterValue required="false" variableLength="false">Hyperlink</command:parameterValue>
            <command:parameterValue required="false" variableLength="false">ArtifactLink</command:parameterValue>
          </command:parameterValueGroup>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: WorkItem -->
      <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="id">
        <maml:name>WorkItem</maml:name>
        <maml:description>
          <maml:para>Specifies a work item. Valid values are the work item ID or an instance of Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItem. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="id">
        <maml:name>id</maml:name>
        <maml:description>
          <maml:para>Specifies a work item. Valid values are the work item ID or an instance of Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItem. </maml:para>
          <maml:para>This is an alias of the WorkItem parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: LinkType -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>LinkType</maml:name>
        <maml:description>
          <maml:para>Returns only the specified link types. When omitted, returns all link types. </maml:para>
          <maml:para>Possible values: All, Parent, Child, Related, Predecessor, Successor, Duplicate, DuplicateOf, Tests, TestedBy, TestCase, SharedSteps, References, ReferencedBy, ProducesFor, ConsumesFrom, RemoteRelated, AttachedFile, Hyperlink, ArtifactLink</maml:para>
        </maml:description>
        <command:parameterValue required="true">WorkItemLinkType</command:parameterValue>
        <dev:type>
          <maml:name>TfsCmdlets.WorkItemLinkType</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>All</dev:defaultValue>
        <command:parameterValueGroup>
          <command:parameterValue required="false" variableLength="false">All</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">Parent</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">Child</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">Related</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">Predecessor</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">Successor</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">Duplicate</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">DuplicateOf</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">Tests</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">TestedBy</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">TestCase</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">SharedSteps</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">References</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">ReferencedBy</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">ProducesFor</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">ConsumesFrom</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">RemoteRelated</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">AttachedFile</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">Hyperlink</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">ArtifactLink</command:parameterValue>
        </command:parameterValueGroup>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named" aliases="Organization">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named" aliases="Organization">
        <maml:name>Organization</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          <maml:para>This is an alias of the Collection parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Server -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Server</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies a work item. Valid values are the work item ID or an instance of Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItem. </maml:para>
        </maml:description>
      </command:inputType>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: WorkItemRelation -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItemRelation</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/WorkItem/Linking/Get-TfsWorkItemLink</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Get-TfsWorkItemLinkType -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="WorkItem.Linking">
    <command:details>
      <command:name>Get-TfsWorkItemLinkType</command:name>
      <command:verb>Get</command:verb>
      <command:noun>TfsWorkItemLinkType</command:noun>
      <maml:description>
        <maml:para>Gets the work item link end types of a team project collection. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Get-TfsWorkItemLinkType</maml:name>
        <!-- Parameter: LinkType -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name,EndLinkType,Type,Link">
          <maml:name>LinkType</maml:name>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>*</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named" aliases="Organization">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: LinkType -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name,EndLinkType,Type,Link">
        <maml:name>LinkType</maml:name>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>*</dev:defaultValue>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name,EndLinkType,Type,Link">
        <maml:name>Name</maml:name>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>*</dev:defaultValue>
        <maml:description>
          <maml:para>This is an alias of the LinkType parameter.</maml:para>
        </maml:description>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name,EndLinkType,Type,Link">
        <maml:name>EndLinkType</maml:name>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>*</dev:defaultValue>
        <maml:description>
          <maml:para>This is an alias of the LinkType parameter.</maml:para>
        </maml:description>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name,EndLinkType,Type,Link">
        <maml:name>Type</maml:name>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>*</dev:defaultValue>
        <maml:description>
          <maml:para>This is an alias of the LinkType parameter.</maml:para>
        </maml:description>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name,EndLinkType,Type,Link">
        <maml:name>Link</maml:name>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>*</dev:defaultValue>
        <maml:description>
          <maml:para>This is an alias of the LinkType parameter.</maml:para>
        </maml:description>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named" aliases="Organization">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named" aliases="Organization">
        <maml:name>Organization</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          <maml:para>This is an alias of the Collection parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Server -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Server</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues />
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/WorkItem/Linking/Get-TfsWorkItemLinkType</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Export-TfsWorkItemQuery -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="WorkItem.Query">
    <command:details>
      <command:name>Export-TfsWorkItemQuery</command:name>
      <command:verb>Export</command:verb>
      <command:noun>TfsWorkItemQuery</command:noun>
      <maml:description>
        <maml:para>Exports a saved work item query to XML. </maml:para>
      </maml:description>
    </command:details>
    <maml:description>
      <maml:para>Work item queries can be exported to XML files (.WIQ extension) in order to be shared and reused. Visual Studio Team Explorer has the ability to open and save WIQ files. Use this cmdlet to generate WIQ files compatible with the format supported by Team Explorer. </maml:para>
    </maml:description>
    <command:syntax>
      <!-- Parameter Set: Export to file -->
      <command:syntaxItem tfscmdlets:parameterSet="Export to file">
        <maml:name>Export-TfsWorkItemQuery</maml:name>
        <!-- Parameter: Query -->
        <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Path">
          <maml:name>Query</maml:name>
          <maml:description>
            <maml:para>Specifies one or more saved queries to export. Wildcards supported. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Destination -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
          <maml:name>Destination</maml:name>
          <maml:description>
            <maml:para>Specifies the path to the folder where exported queries are saved. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Encoding -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Encoding</maml:name>
          <maml:description>
            <maml:para>Specifies the encoding for the exported XML files. When omitted, defaults to UTF-8. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>UTF-8</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: FlattenFolders -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>FlattenFolders</maml:name>
          <maml:description>
            <maml:para>Flattens the query folder structure. When omitted, the original query folder structure is recreated in the destination folder. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Force -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Force</maml:name>
          <maml:description>
            <maml:para>Allows the cmdlet to overwrite an existing file in the destination folder. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Scope -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Scope</maml:name>
          <maml:description>
            <maml:para>Specifies the scope of the returned item. Personal refers to the "My Queries" folder", whereas Shared refers to the "Shared Queries" folder. When omitted defaults to "Both", effectively searching for items in both scopes. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>Both</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
      <!-- Parameter Set: Export to output stream -->
      <command:syntaxItem tfscmdlets:parameterSet="Export to output stream">
        <maml:name>Export-TfsWorkItemQuery</maml:name>
        <!-- Parameter: Query -->
        <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Path">
          <maml:name>Query</maml:name>
          <maml:description>
            <maml:para>Specifies one or more saved queries to export. Wildcards supported. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: AsXml -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
          <maml:name>AsXml</maml:name>
          <maml:description>
            <maml:para>Exports the saved query to the standard output stream as a string-encoded XML document. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Scope -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Scope</maml:name>
          <maml:description>
            <maml:para>Specifies the scope of the returned item. Personal refers to the "My Queries" folder", whereas Shared refers to the "Shared Queries" folder. When omitted defaults to "Both", effectively searching for items in both scopes. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>Both</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Query -->
      <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Path">
        <maml:name>Query</maml:name>
        <maml:description>
          <maml:para>Specifies one or more saved queries to export. Wildcards supported. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Path">
        <maml:name>Path</maml:name>
        <maml:description>
          <maml:para>Specifies one or more saved queries to export. Wildcards supported. </maml:para>
          <maml:para>This is an alias of the Query parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Scope -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Scope</maml:name>
        <maml:description>
          <maml:para>Specifies the scope of the returned item. Personal refers to the "My Queries" folder", whereas Shared refers to the "Shared Queries" folder. When omitted defaults to "Both", effectively searching for items in both scopes. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>Both</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Destination -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
        <maml:name>Destination</maml:name>
        <maml:description>
          <maml:para>Specifies the path to the folder where exported queries are saved. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Encoding -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Encoding</maml:name>
        <maml:description>
          <maml:para>Specifies the encoding for the exported XML files. When omitted, defaults to UTF-8. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>UTF-8</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: FlattenFolders -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>FlattenFolders</maml:name>
        <maml:description>
          <maml:para>Flattens the query folder structure. When omitted, the original query folder structure is recreated in the destination folder. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Force -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Force</maml:name>
        <maml:description>
          <maml:para>Allows the cmdlet to overwrite an existing file in the destination folder. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: AsXml -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
        <maml:name>AsXml</maml:name>
        <maml:description>
          <maml:para>Exports the saved query to the standard output stream as a string-encoded XML document. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Organization</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          <maml:para>This is an alias of the Collection parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Server -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Server</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies one or more saved queries to export. Wildcards supported. </maml:para>
        </maml:description>
      </command:inputType>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: String -->
      <command:returnValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/WorkItem/Query/Export-TfsWorkItemQuery</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Get-TfsWorkItemQuery -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="WorkItem.Query">
    <command:details>
      <command:name>Get-TfsWorkItemQuery</command:name>
      <command:verb>Get</command:verb>
      <command:noun>TfsWorkItemQuery</command:noun>
      <maml:description>
        <maml:para>Gets the definition of one or more work item saved queries. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Get-TfsWorkItemQuery</maml:name>
        <!-- Parameter: Query -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Path">
          <maml:name>Query</maml:name>
          <maml:description>
            <maml:para>Specifies one or more saved queries to return. Wildcards supported. When omitted, returns all saved queries in the given scope of the given team project. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>**</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Deleted -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Deleted</maml:name>
          <maml:description>
            <maml:para>Returns only 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:para>Possible values: Personal, Shared, Both</maml:para>
          </maml:description>
          <command:parameterValue required="true">QueryItemScope</command:parameterValue>
          <dev:type>
            <maml:name>TfsCmdlets.QueryItemScope</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>Both</dev:defaultValue>
          <command:parameterValueGroup>
            <command:parameterValue required="false" variableLength="false">Personal</command:parameterValue>
            <command:parameterValue required="false" variableLength="false">Shared</command:parameterValue>
            <command:parameterValue required="false" variableLength="false">Both</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: Query -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Path">
        <maml:name>Query</maml:name>
        <maml:description>
          <maml:para>Specifies one or more saved queries to return. Wildcards supported. When omitted, returns all saved queries in the given scope of the given team project. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>**</dev:defaultValue>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Path">
        <maml:name>Path</maml:name>
        <maml:description>
          <maml:para>Specifies one or more saved queries to return. Wildcards supported. When omitted, returns all saved queries in the given scope of the given team project. </maml:para>
          <maml:para>This is an alias of the Query parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>**</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Scope -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Scope</maml:name>
        <maml:description>
          <maml:para>Specifies the scope of the returned item. Personal refers to the "My Queries" folder", whereas Shared refers to the "Shared Queries" folder. When omitted defaults to "Both", effectively searching for items in both scopes. </maml:para>
          <maml:para>Possible values: Personal, Shared, Both</maml:para>
        </maml:description>
        <command:parameterValue required="true">QueryItemScope</command:parameterValue>
        <dev:type>
          <maml:name>TfsCmdlets.QueryItemScope</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>Both</dev:defaultValue>
        <command:parameterValueGroup>
          <command:parameterValue required="false" variableLength="false">Personal</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">Shared</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">Both</command:parameterValue>
        </command:parameterValueGroup>
      </command:parameter>
      <!-- Parameter: Deleted -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Deleted</maml:name>
        <maml:description>
          <maml:para>Returns only deleted items. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Organization</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          <maml:para>This is an alias of the Collection parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Server -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Server</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: QueryHierarchyItem -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.QueryHierarchyItem</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/WorkItem/Query/Get-TfsWorkItemQuery</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: New-TfsWorkItemQuery -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="WorkItem.Query">
    <command:details>
      <command:name>New-TfsWorkItemQuery</command:name>
      <command:verb>New</command:verb>
      <command:noun>TfsWorkItemQuery</command:noun>
      <maml:description>
        <maml:para>Create a new work items query in the given Team Project. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>New-TfsWorkItemQuery</maml:name>
        <!-- Parameter: Query -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Path">
          <maml:name>Query</maml:name>
          <maml:description>
            <maml:para>Specifies one or more saved queries to return. Wildcards supported. When omitted, returns all saved queries in the given scope of the given team project. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Passthru -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Passthru</maml:name>
          <maml:description>
            <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Scope -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Scope</maml:name>
          <maml:description>
            <maml:para>Specifies the scope of the returned item. Personal refers to the "My Queries" folder", whereas Shared refers to the "Shared Queries" folder. When omitted defaults to "Both", effectively searching for items in both scopes. </maml:para>
            <maml:para>Possible values: Personal, Shared, Both</maml:para>
          </maml:description>
          <command:parameterValue required="true">QueryItemScope</command:parameterValue>
          <dev:type>
            <maml:name>TfsCmdlets.QueryItemScope</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>Personal</dev:defaultValue>
          <command:parameterValueGroup>
            <command:parameterValue required="false" variableLength="false">Personal</command:parameterValue>
            <command:parameterValue required="false" variableLength="false">Shared</command:parameterValue>
            <command:parameterValue required="false" variableLength="false">Both</command:parameterValue>
          </command:parameterValueGroup>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Wiql -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Definition">
          <maml:name>Wiql</maml:name>
          <maml:description>
            <maml:para>Specifies the query definition text in WIQL (Work Item Query Language). </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Query -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Path">
        <maml:name>Query</maml:name>
        <maml:description>
          <maml:para>Specifies one or more saved queries to return. Wildcards supported. When omitted, returns all saved queries in the given scope of the given team project. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Path">
        <maml:name>Path</maml:name>
        <maml:description>
          <maml:para>Specifies one or more saved queries to return. Wildcards supported. When omitted, returns all saved queries in the given scope of the given team project. </maml:para>
          <maml:para>This is an alias of the Query parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Scope -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Scope</maml:name>
        <maml:description>
          <maml:para>Specifies the scope of the returned item. Personal refers to the "My Queries" folder", whereas Shared refers to the "Shared Queries" folder. When omitted defaults to "Both", effectively searching for items in both scopes. </maml:para>
          <maml:para>Possible values: Personal, Shared, Both</maml:para>
        </maml:description>
        <command:parameterValue required="true">QueryItemScope</command:parameterValue>
        <dev:type>
          <maml:name>TfsCmdlets.QueryItemScope</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>Personal</dev:defaultValue>
        <command:parameterValueGroup>
          <command:parameterValue required="false" variableLength="false">Personal</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">Shared</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">Both</command:parameterValue>
        </command:parameterValueGroup>
      </command:parameter>
      <!-- Parameter: Wiql -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Definition">
        <maml:name>Wiql</maml:name>
        <maml:description>
          <maml:para>Specifies the query definition text in WIQL (Work Item Query Language). </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Definition">
        <maml:name>Definition</maml:name>
        <maml:description>
          <maml:para>Specifies the query definition text in WIQL (Work Item Query Language). </maml:para>
          <maml:para>This is an alias of the Wiql parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Passthru -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Passthru</maml:name>
        <maml:description>
          <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Organization</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          <maml:para>This is an alias of the Collection parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Server -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Server</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes />
    <command:returnValues>
      <!-- OutputType: QueryHierarchyItem -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.QueryHierarchyItem</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/WorkItem/Query/New-TfsWorkItemQuery</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Get-TfsWorkItemQueryFolder -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="WorkItem.Query.Folder">
    <command:details>
      <command:name>Get-TfsWorkItemQueryFolder</command:name>
      <command:verb>Get</command:verb>
      <command:noun>TfsWorkItemQueryFolder</command:noun>
      <maml:description>
        <maml:para>Gets the definition of one or more work item saved queries. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Get-TfsWorkItemQueryFolder</maml:name>
        <!-- Parameter: Folder -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Path">
          <maml:name>Folder</maml:name>
          <maml:description>
            <maml:para>Specifies one or more saved queries to return. Wildcards supported. When omitted, returns all saved queries in the given scope of the given team project. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>**</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Deleted -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Deleted</maml:name>
          <maml:description>
            <maml:para>Returns deleted items. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Scope -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Scope</maml:name>
          <maml:description>
            <maml:para>Specifies the scope of the returned item. Personal refers to the "My Queries" folder", whereas Shared refers to the "Shared Queries" folder. When omitted defaults to "Both", effectively searching for items in both scopes. </maml:para>
            <maml:para>Possible values: Personal, Shared, Both</maml:para>
          </maml:description>
          <command:parameterValue required="true">QueryItemScope</command:parameterValue>
          <dev:type>
            <maml:name>TfsCmdlets.QueryItemScope</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>Both</dev:defaultValue>
          <command:parameterValueGroup>
            <command:parameterValue required="false" variableLength="false">Personal</command:parameterValue>
            <command:parameterValue required="false" variableLength="false">Shared</command:parameterValue>
            <command:parameterValue required="false" variableLength="false">Both</command:parameterValue>
          </command:parameterValueGroup>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Folder -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Path">
        <maml:name>Folder</maml:name>
        <maml:description>
          <maml:para>Specifies one or more saved queries to return. Wildcards supported. When omitted, returns all saved queries in the given scope of the given team project. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>**</dev:defaultValue>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Path">
        <maml:name>Path</maml:name>
        <maml:description>
          <maml:para>Specifies one or more saved queries to return. Wildcards supported. When omitted, returns all saved queries in the given scope of the given team project. </maml:para>
          <maml:para>This is an alias of the Folder parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>**</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Scope -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Scope</maml:name>
        <maml:description>
          <maml:para>Specifies the scope of the returned item. Personal refers to the "My Queries" folder", whereas Shared refers to the "Shared Queries" folder. When omitted defaults to "Both", effectively searching for items in both scopes. </maml:para>
          <maml:para>Possible values: Personal, Shared, Both</maml:para>
        </maml:description>
        <command:parameterValue required="true">QueryItemScope</command:parameterValue>
        <dev:type>
          <maml:name>TfsCmdlets.QueryItemScope</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>Both</dev:defaultValue>
        <command:parameterValueGroup>
          <command:parameterValue required="false" variableLength="false">Personal</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">Shared</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">Both</command:parameterValue>
        </command:parameterValueGroup>
      </command:parameter>
      <!-- Parameter: Deleted -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Deleted</maml:name>
        <maml:description>
          <maml:para>Returns deleted items. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Organization</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          <maml:para>This is an alias of the Collection parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Server -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Server</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: QueryHierarchyItem -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.QueryHierarchyItem</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/WorkItem/Query/Folder/Get-TfsWorkItemQueryFolder</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: New-TfsWorkItemQueryFolder -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="WorkItem.Query.Folder">
    <command:details>
      <command:name>New-TfsWorkItemQueryFolder</command:name>
      <command:verb>New</command:verb>
      <command:noun>TfsWorkItemQueryFolder</command:noun>
      <maml:description>
        <maml:para>Create a new work items query in the given Team Project. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>New-TfsWorkItemQueryFolder</maml:name>
        <!-- Parameter: Folder -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Path">
          <maml:name>Folder</maml:name>
          <maml:description>
            <maml:para>Specifies one or more saved queries to return. Wildcards supported. When omitted, returns all saved queries in the given scope of the given team project. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Passthru -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Passthru</maml:name>
          <maml:description>
            <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Scope -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Scope</maml:name>
          <maml:description>
            <maml:para>Specifies the scope of the returned item. Personal refers to the "My Queries" folder, whereas Shared refers to the "Shared Queries" folder. When omitted defaults to "Both", effectively searching for items in both scopes. </maml:para>
            <maml:para>Possible values: Personal, Shared, Both</maml:para>
          </maml:description>
          <command:parameterValue required="true">QueryItemScope</command:parameterValue>
          <dev:type>
            <maml:name>TfsCmdlets.QueryItemScope</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>Personal</dev:defaultValue>
          <command:parameterValueGroup>
            <command:parameterValue required="false" variableLength="false">Personal</command:parameterValue>
            <command:parameterValue required="false" variableLength="false">Shared</command:parameterValue>
            <command:parameterValue required="false" variableLength="false">Both</command:parameterValue>
          </command:parameterValueGroup>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Folder -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Path">
        <maml:name>Folder</maml:name>
        <maml:description>
          <maml:para>Specifies 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:para>Possible values: Personal, Shared, Both</maml:para>
        </maml:description>
        <command:parameterValue required="true">QueryItemScope</command:parameterValue>
        <dev:type>
          <maml:name>TfsCmdlets.QueryItemScope</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>Personal</dev:defaultValue>
        <command:parameterValueGroup>
          <command:parameterValue required="false" variableLength="false">Personal</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">Shared</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">Both</command:parameterValue>
        </command:parameterValueGroup>
      </command:parameter>
      <!-- Parameter: Passthru -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Passthru</maml:name>
        <maml:description>
          <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Organization</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          <maml:para>This is an alias of the Collection parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Server -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Server</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes />
    <command:returnValues>
      <!-- OutputType: QueryHierarchyItem -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.QueryHierarchyItem</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/WorkItem/Query/Folder/New-TfsWorkItemQueryFolder</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Undo-TfsWorkItemQueryFolderRemoval -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/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>Undo-TfsWorkItemQueryFolderRemoval</command:name>
      <command:verb>Undo</command:verb>
      <command:noun>TfsWorkItemQueryFolderRemoval</command:noun>
      <maml:description>
        <maml:para>Restores a deleted work item query folder. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Undo-TfsWorkItemQueryFolderRemoval</maml:name>
        <!-- Parameter: Folder -->
        <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Path">
          <maml:name>Folder</maml:name>
          <maml:description>
            <maml:para>Specifies one or more query folders to restore. 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: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </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: Recursive -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Recursive</maml:name>
          <maml:description>
            <maml:para>Restores the specified query folder and all its descendants. When omitted, the specified folder is restored but not its contents (queries and/or sub-folders). </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Scope -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Scope</maml:name>
          <maml:description>
            <maml:para>Specifies the scope of the item to restore. 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:para>Possible values: Personal, Shared, Both</maml:para>
          </maml:description>
          <command:parameterValue required="true">QueryItemScope</command:parameterValue>
          <dev:type>
            <maml:name>TfsCmdlets.QueryItemScope</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>Both</dev:defaultValue>
          <command:parameterValueGroup>
            <command:parameterValue required="false" variableLength="false">Personal</command:parameterValue>
            <command:parameterValue required="false" variableLength="false">Shared</command:parameterValue>
            <command:parameterValue required="false" variableLength="false">Both</command:parameterValue>
          </command:parameterValueGroup>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Folder -->
      <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Path">
        <maml:name>Folder</maml:name>
        <maml:description>
          <maml:para>Specifies one or more query folders to restore. 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 query folders to restore. Wildcards 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: 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 item to restore. 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:para>Possible values: Personal, Shared, Both</maml:para>
        </maml:description>
        <command:parameterValue required="true">QueryItemScope</command:parameterValue>
        <dev:type>
          <maml:name>TfsCmdlets.QueryItemScope</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>Both</dev:defaultValue>
        <command:parameterValueGroup>
          <command:parameterValue required="false" variableLength="false">Personal</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">Shared</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">Both</command:parameterValue>
        </command:parameterValueGroup>
      </command:parameter>
      <!-- Parameter: Recursive -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Recursive</maml:name>
        <maml:description>
          <maml:para>Restores the specified query folder and all its descendants. When omitted, the specified folder is restored but not its contents (queries and/or sub-folders). </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Organization</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          <maml:para>This is an alias of the Collection parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Server -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Server</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies one or more query folders to restore. Wildcards supported. </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/Undo-TfsWorkItemQueryFolderRemoval</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Undo-TfsWorkItemQueryRemoval -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/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>Undo-TfsWorkItemQueryRemoval</command:name>
      <command:verb>Undo</command:verb>
      <command:noun>TfsWorkItemQueryRemoval</command:noun>
      <maml:description>
        <maml:para>Restores a deleted work item query. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Undo-TfsWorkItemQueryRemoval</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 restore. 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: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Scope -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Scope</maml:name>
          <maml:description>
            <maml:para>Specifies the scope of the item to restore. 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:para>Possible values: Personal, Shared, Both</maml:para>
          </maml:description>
          <command:parameterValue required="true">QueryItemScope</command:parameterValue>
          <dev:type>
            <maml:name>TfsCmdlets.QueryItemScope</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>Both</dev:defaultValue>
          <command:parameterValueGroup>
            <command:parameterValue required="false" variableLength="false">Personal</command:parameterValue>
            <command:parameterValue required="false" variableLength="false">Shared</command:parameterValue>
            <command:parameterValue required="false" variableLength="false">Both</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: 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 restore. 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 restore. 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 item to restore. 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:para>Possible values: Personal, Shared, Both</maml:para>
        </maml:description>
        <command:parameterValue required="true">QueryItemScope</command:parameterValue>
        <dev:type>
          <maml:name>TfsCmdlets.QueryItemScope</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>Both</dev:defaultValue>
        <command:parameterValueGroup>
          <command:parameterValue required="false" variableLength="false">Personal</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">Shared</command:parameterValue>
          <command:parameterValue required="false" variableLength="false">Both</command:parameterValue>
        </command:parameterValueGroup>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Organization</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          <maml:para>This is an alias of the Collection parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Server -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Server</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies one or more saved queries to restore. Wildcards supported. </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/Undo-TfsWorkItemQueryRemoval</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Undo-TfsWorkItemRemoval -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="WorkItem">
    <command:details>
      <command:name>Undo-TfsWorkItemRemoval</command:name>
      <command:verb>Undo</command:verb>
      <command:noun>TfsWorkItemRemoval</command:noun>
      <maml:description>
        <maml:para>Restores a deleted work item. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Undo-TfsWorkItemRemoval</maml:name>
        <!-- Parameter: WorkItem -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Id">
          <maml:name>WorkItem</maml:name>
          <maml:description>
            <maml:para>Specifies the ID of the work item to be restored. Can also receive the output of `Get-WorkItem -Deleted`. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: WorkItem -->
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Id">
        <maml:name>WorkItem</maml:name>
        <maml:description>
          <maml:para>Specifies the ID of the work item to be restored. Can also receive the output of `Get-WorkItem -Deleted`. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Id">
        <maml:name>Id</maml:name>
        <maml:description>
          <maml:para>Specifies the ID of the work item to be restored. Can also receive the output of `Get-WorkItem -Deleted`. </maml:para>
          <maml:para>This is an alias of the WorkItem parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Organization</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          <maml:para>This is an alias of the Collection parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Server -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Server</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the ID of the work item to be restored. Can also receive the output of `Get-WorkItem -Deleted`. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues />
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/WorkItem/Undo-TfsWorkItemRemoval</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Disable-TfsWorkItemTag -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="WorkItem.Tagging">
    <command:details>
      <command:name>Disable-TfsWorkItemTag</command:name>
      <command:verb>Disable</command:verb>
      <command:noun>TfsWorkItemTag</command:noun>
      <maml:description>
        <maml:para>Disables (deactivates) a work item tag. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Disable-TfsWorkItemTag</maml:name>
        <!-- Parameter: Tag -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Name">
          <maml:name>Tag</maml:name>
          <maml:description>
            <maml:para>Specifies the tag to disable. Wildcards are supported. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Passthru -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Passthru</maml:name>
          <maml:description>
            <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Tag -->
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Name">
        <maml:name>Tag</maml:name>
        <maml:description>
          <maml:para>Specifies the tag to disable. Wildcards are supported. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Name">
        <maml:name>Name</maml:name>
        <maml:description>
          <maml:para>Specifies the tag to disable. Wildcards are supported. </maml:para>
          <maml:para>This is an alias of the Tag parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Passthru -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Passthru</maml:name>
        <maml:description>
          <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Organization</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          <maml:para>This is an alias of the Collection parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Server -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Server</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the tag to disable. Wildcards are supported. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: WebApiTagDefinition -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.TeamFoundation.Core.WebApi.WebApiTagDefinition</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/WorkItem/Tagging/Disable-TfsWorkItemTag</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Enable-TfsWorkItemTag -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="WorkItem.Tagging">
    <command:details>
      <command:name>Enable-TfsWorkItemTag</command:name>
      <command:verb>Enable</command:verb>
      <command:noun>TfsWorkItemTag</command:noun>
      <maml:description>
        <maml:para>Enables (activates) a work item tag. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Enable-TfsWorkItemTag</maml:name>
        <!-- Parameter: Tag -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Name">
          <maml:name>Tag</maml:name>
          <maml:description>
            <maml:para>Specifies the tag to enable. Wildcards are supported. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Passthru -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Passthru</maml:name>
          <maml:description>
            <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Tag -->
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Name">
        <maml:name>Tag</maml:name>
        <maml:description>
          <maml:para>Specifies the tag to enable. Wildcards are supported. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Name">
        <maml:name>Name</maml:name>
        <maml:description>
          <maml:para>Specifies the tag to enable. Wildcards are supported. </maml:para>
          <maml:para>This is an alias of the Tag parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Passthru -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Passthru</maml:name>
        <maml:description>
          <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Organization</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          <maml:para>This is an alias of the Collection parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Server -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Server</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the tag to enable. Wildcards are supported. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: WebApiTagDefinition -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.TeamFoundation.Core.WebApi.WebApiTagDefinition</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/WorkItem/Tagging/Enable-TfsWorkItemTag</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Get-TfsWorkItemTag -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="WorkItem.Tagging">
    <command:details>
      <command:name>Get-TfsWorkItemTag</command:name>
      <command:verb>Get</command:verb>
      <command:noun>TfsWorkItemTag</command:noun>
      <maml:description>
        <maml:para>Gets one or more work item tags. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Get-TfsWorkItemTag</maml:name>
        <!-- Parameter: Tag -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name">
          <maml:name>Tag</maml:name>
          <maml:description>
            <maml:para>Specifies one or more tags to returns. Wildcards are supported. When omitted, returns all existing tags in the given project. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>*</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: IncludeInactive -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>IncludeInactive</maml:name>
          <maml:description>
            <maml:para>Includes tags not associated to any work items. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Tag -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name">
        <maml:name>Tag</maml:name>
        <maml:description>
          <maml:para>Specifies one or more tags to returns. Wildcards are supported. When omitted, returns all existing tags in the given project. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>*</dev:defaultValue>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name">
        <maml:name>Name</maml:name>
        <maml:description>
          <maml:para>Specifies one or more tags to returns. Wildcards are supported. When omitted, returns all existing tags in the given project. </maml:para>
          <maml:para>This is an alias of the Tag parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>*</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: IncludeInactive -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>IncludeInactive</maml:name>
        <maml:description>
          <maml:para>Includes tags not associated to any work items. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Organization</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          <maml:para>This is an alias of the Collection parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Server -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Server</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: WebApiTagDefinition -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.TeamFoundation.Core.WebApi.WebApiTagDefinition</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/WorkItem/Tagging/Get-TfsWorkItemTag</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: New-TfsWorkItemTag -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="WorkItem.Tagging">
    <command:details>
      <command:name>New-TfsWorkItemTag</command:name>
      <command:verb>New</command:verb>
      <command:noun>TfsWorkItemTag</command:noun>
      <maml:description>
        <maml:para>Creates a new work item tag. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>New-TfsWorkItemTag</maml:name>
        <!-- Parameter: Tag -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Name">
          <maml:name>Tag</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the new tag. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Passthru -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Passthru</maml:name>
          <maml:description>
            <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Tag -->
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Name">
        <maml:name>Tag</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the new tag. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Name">
        <maml:name>Name</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the new tag. </maml:para>
          <maml:para>This is an alias of the Tag parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Passthru -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Passthru</maml:name>
        <maml:description>
          <maml:para>Returns the results of the command. By default, this cmdlet does not generate any output. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Organization</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          <maml:para>This is an alias of the Collection parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Server -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Server</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the name of the new tag. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: WebApiTagDefinition -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.TeamFoundation.Core.WebApi.WebApiTagDefinition</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/WorkItem/Tagging/New-TfsWorkItemTag</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Remove-TfsWorkItemTag -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="WorkItem.Tagging">
    <command:details>
      <command:name>Remove-TfsWorkItemTag</command:name>
      <command:verb>Remove</command:verb>
      <command:noun>TfsWorkItemTag</command:noun>
      <maml:description>
        <maml:para>Deletes one or more work item tags. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Remove-TfsWorkItemTag</maml:name>
        <!-- Parameter: Tag -->
        <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Name">
          <maml:name>Tag</maml:name>
          <maml:description>
            <maml:para>Specifies one or more tags to delete. Wildcards are supported. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Force -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Force</maml:name>
          <maml:description>
            <maml:para>Forces the exclusion of the item. When omitted, the command prompts for confirmation prior to deleting the item. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Tag -->
      <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Name">
        <maml:name>Tag</maml:name>
        <maml:description>
          <maml:para>Specifies one or more tags to delete. Wildcards are supported. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Name">
        <maml:name>Name</maml:name>
        <maml:description>
          <maml:para>Specifies one or more tags to delete. Wildcards are supported. </maml:para>
          <maml:para>This is an alias of the Tag parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Force -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Force</maml:name>
        <maml:description>
          <maml:para>Forces the exclusion of the item. When omitted, the command prompts for confirmation prior to deleting the item. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Organization</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          <maml:para>This is an alias of the Collection parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Server -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Server</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies one or more tags to delete. Wildcards are supported. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues />
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/WorkItem/Tagging/Remove-TfsWorkItemTag</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Rename-TfsWorkItemTag -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="WorkItem.Tagging">
    <command:details>
      <command:name>Rename-TfsWorkItemTag</command:name>
      <command:verb>Rename</command:verb>
      <command:noun>TfsWorkItemTag</command:noun>
      <maml:description>
        <maml:para>Renames a work item tag. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: __AllParameterSets -->
      <command:syntaxItem tfscmdlets:parameterSet="__AllParameterSets">
        <maml:name>Rename-TfsWorkItemTag</maml:name>
        <!-- Parameter: Tag -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Name">
          <maml:name>Tag</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the work item tag to rename. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: NewName -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="1">
          <maml:name>NewName</maml:name>
          <maml:description>
            <maml:para>Specifies the new name of the item. Enter only a name - i.e., for items that support paths, do not enter a path and name. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Tag -->
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Name">
        <maml:name>Tag</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the work item tag to rename. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="0" aliases="Name">
        <maml:name>Name</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the work item tag to rename. </maml:para>
          <maml:para>This is an alias of the Tag parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: NewName -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="1">
        <maml:name>NewName</maml:name>
        <maml:description>
          <maml:para>Specifies the new name of the item. Enter only a name - i.e., for items that support paths, do not enter a path and name. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Organization</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          <maml:para>This is an alias of the Collection parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Server -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Server</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the name of the work item tag to rename. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: WebApiTagDefinition -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.TeamFoundation.Core.WebApi.WebApiTagDefinition</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/WorkItem/Tagging/Rename-TfsWorkItemTag</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Export-TfsWorkItemType -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="WorkItem.WorkItemType">
    <command:details>
      <command:name>Export-TfsWorkItemType</command:name>
      <command:verb>Export</command:verb>
      <command:noun>TfsWorkItemType</command:noun>
      <maml:description>
        <maml:para>Exports an XML work item type definition from a team project. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: Export to file -->
      <command:syntaxItem tfscmdlets:parameterSet="Export to file">
        <maml:name>Export-TfsWorkItemType</maml:name>
        <!-- Parameter: Type -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name">
          <maml:name>Type</maml:name>
          <maml:description>
            <maml:para>Specifies one or more work item types to export. Wildcards are supported. When omitted, all work item types in the given project are exported </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>*</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Destination -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Destination</maml:name>
          <maml:description>
            <maml:para>Specifies the path to the folder where exported types are saved. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Encoding -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Encoding</maml:name>
          <maml:description>
            <maml:para>Specifies the encoding for the exported XML files. When omitted, defaults to UTF-8. </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>UTF-8</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Force -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Force</maml:name>
          <maml:description>
            <maml:para>Allows the cmdlet to overwrite an existing file in the destination folder. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: IncludeGlobalLists -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>IncludeGlobalLists</maml:name>
          <maml:description>
            <maml:para>Exports the definitions of referenced global lists. When omitted, global list definitions are not included in the exported XML document. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
      <!-- Parameter Set: Export to output stream -->
      <command:syntaxItem tfscmdlets:parameterSet="Export to output stream">
        <maml:name>Export-TfsWorkItemType</maml:name>
        <!-- Parameter: Type -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name">
          <maml:name>Type</maml:name>
          <maml:description>
            <maml:para>Specifies one or more work item types to export. Wildcards are supported. When omitted, all work item types in the given project are exported </maml:para>
          </maml:description>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>*</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: AsXml -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
          <maml:name>AsXml</maml:name>
          <maml:description>
            <maml:para>Exports the saved query to the standard output stream as a string-encoded XML document. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: IncludeGlobalLists -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>IncludeGlobalLists</maml:name>
          <maml:description>
            <maml:para>Exports the definitions of referenced global lists. When omitted, global list definitions are not included in the exported XML document. </maml:para>
          </maml:description>
          <command:parameterValue required="true">SwitchParameter</command:parameterValue>
          <dev:type>
            <maml:name>System.Management.Automation.SwitchParameter</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>False</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Type -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name">
        <maml:name>Type</maml:name>
        <maml:description>
          <maml:para>Specifies one or more work item types to export. Wildcards are supported. When omitted, all work item types in the given project are exported </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>*</dev:defaultValue>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name">
        <maml:name>Name</maml:name>
        <maml:description>
          <maml:para>Specifies one or more work item types to export. Wildcards are supported. When omitted, all work item types in the given project are exported </maml:para>
          <maml:para>This is an alias of the Type parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>*</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: IncludeGlobalLists -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>IncludeGlobalLists</maml:name>
        <maml:description>
          <maml:para>Exports the definitions of referenced global lists. When omitted, global list definitions are not included in the exported XML document. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Destination -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Destination</maml:name>
        <maml:description>
          <maml:para>Specifies the path to the folder where exported types are saved. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Encoding -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Encoding</maml:name>
        <maml:description>
          <maml:para>Specifies the encoding for the exported XML files. When omitted, defaults to UTF-8. </maml:para>
        </maml:description>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>UTF-8</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Force -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Force</maml:name>
        <maml:description>
          <maml:para>Allows the cmdlet to overwrite an existing file in the destination folder. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: AsXml -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
        <maml:name>AsXml</maml:name>
        <maml:description>
          <maml:para>Exports the saved query to the standard output stream as a string-encoded XML document. </maml:para>
        </maml:description>
        <command:parameterValue required="true">SwitchParameter</command:parameterValue>
        <dev:type>
          <maml:name>System.Management.Automation.SwitchParameter</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>False</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Organization</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          <maml:para>This is an alias of the Collection parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Server -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Server</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: String -->
      <command:returnValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/WorkItem/WorkItemType/Export-TfsWorkItemType</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Get-TfsWorkItemType -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="WorkItem.WorkItemType">
    <command:details>
      <command:name>Get-TfsWorkItemType</command:name>
      <command:verb>Get</command:verb>
      <command:noun>TfsWorkItemType</command:noun>
      <maml:description>
        <maml:para>Gets one or more Work Item Type definitions from a team project. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: Get by type -->
      <command:syntaxItem tfscmdlets:parameterSet="Get by type">
        <maml:name>Get-TfsWorkItemType</maml:name>
        <!-- Parameter: Type -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name">
          <maml:name>Type</maml:name>
          <maml:description>
            <maml:para>Specifies one or more work item type names to return. Wildcards are supported. When omitted, returns all work item types in the given team project. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
          <dev:defaultValue>*</dev:defaultValue>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
      <!-- Parameter Set: Get by work item -->
      <command:syntaxItem tfscmdlets:parameterSet="Get by work item">
        <maml:name>Get-TfsWorkItemType</maml:name>
        <!-- Parameter: WorkItem -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
          <maml:name>WorkItem</maml:name>
          <maml:description>
            <maml:para>Speficies a work item whose corresponding type should be returned. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Type -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name">
        <maml:name>Type</maml:name>
        <maml:description>
          <maml:para>Specifies one or more work item type names to return. Wildcards are supported. When omitted, returns all work item types in the given team project. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>*</dev:defaultValue>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="0" aliases="Name">
        <maml:name>Name</maml:name>
        <maml:description>
          <maml:para>Specifies one or more work item type names to return. Wildcards are supported. When omitted, returns all work item types in the given team project. </maml:para>
          <maml:para>This is an alias of the Type parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <dev:defaultValue>*</dev:defaultValue>
      </command:parameter>
      <!-- Parameter: WorkItem -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="named">
        <maml:name>WorkItem</maml:name>
        <maml:description>
          <maml:para>Speficies a work item whose corresponding type should be returned. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="true (ByValue)" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Organization</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          <maml:para>This is an alias of the Collection parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Server -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Server</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues>
      <!-- OutputType: WorkItemType -->
      <command:returnValue>
        <dev:type>
          <maml:name>Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItemType</maml:name>
          <maml:uri />
        </dev:type>
      </command:returnValue>
    </command:returnValues>
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/WorkItem/WorkItemType/Get-TfsWorkItemType</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
  <!-- Cmdlet: Import-TfsWorkItemType -->
  <command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:tfscmdlets="https://igoravl.github.com/tfscmdlets/maml/" tfscmdlets:module="WorkItem.WorkItemType">
    <command:details>
      <command:name>Import-TfsWorkItemType</command:name>
      <command:verb>Import</command:verb>
      <command:noun>TfsWorkItemType</command:noun>
      <maml:description>
        <maml:para>Imports a work item type definition into a team project. </maml:para>
      </maml:description>
    </command:details>
    <command:syntax>
      <!-- Parameter Set: Import from XML -->
      <command:syntaxItem tfscmdlets:parameterSet="Import from XML">
        <maml:name>Import-TfsWorkItemType</maml:name>
        <!-- Parameter: Xml -->
        <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0">
          <maml:name>Xml</maml:name>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
      <!-- Parameter Set: Import from file -->
      <command:syntaxItem tfscmdlets:parameterSet="Import from file">
        <maml:name>Import-TfsWorkItemType</maml:name>
        <!-- Parameter: Path -->
        <command:parameter required="true" globbing="false" pipelineInput="false" position="0">
          <maml:name>Path</maml:name>
          <command:parameterValue required="true">string</command:parameterValue>
          <dev:type>
            <maml:name>System.String</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Collection -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
          <maml:name>Collection</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Project -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Project</maml:name>
          <maml:description>
            <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
        <!-- Parameter: Server -->
        <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
          <maml:name>Server</maml:name>
          <maml:description>
            <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
          </maml:description>
          <command:parameterValue required="true">object</command:parameterValue>
          <dev:type>
            <maml:name>System.Object</maml:name>
            <maml:uri />
          </dev:type>
        </command:parameter>
      </command:syntaxItem>
    </command:syntax>
    <command:parameters>
      <!-- Parameter: Xml -->
      <command:parameter required="true" globbing="false" pipelineInput="true (ByValue)" position="0">
        <maml:name>Xml</maml:name>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Path -->
      <command:parameter required="true" globbing="false" pipelineInput="false" position="0">
        <maml:name>Path</maml:name>
        <command:parameterValue required="true">string</command:parameterValue>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Project -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Project</maml:name>
        <maml:description>
          <maml:para>Specifies the name of the Team Project, its ID (a GUID), or a Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to. When omitted, it defaults to the connection set by Connect-TfsTeamProject (if any). For more details, see the Get-TfsTeamProject cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Collection -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Collection</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named" aliases="Organization">
        <maml:name>Organization</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. You can also connect to an Azure DevOps Services organizations by simply providing its name instead of the full URL. For more details, see the Get-TfsTeamProjectCollection cmdlet. When omitted, it defaults to the connection set by Connect-TfsTeamProjectCollection (if any). </maml:para>
          <maml:para>This is an alias of the Collection parameter.</maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
      <!-- Parameter: Server -->
      <command:parameter required="false" globbing="false" pipelineInput="false" position="named">
        <maml:name>Server</maml:name>
        <maml:description>
          <maml:para>Specifies the URL to the Team Foundation Server to connect to, a TfsConfigurationServer object (Windows PowerShell only), or a VssConnection object. When omitted, it defaults to the connection set by Connect-TfsConfiguration (if any). For more details, see the Get-TfsConfigurationServer cmdlet. </maml:para>
        </maml:description>
        <command:parameterValue required="true">object</command:parameterValue>
        <dev:type>
          <maml:name>System.Object</maml:name>
          <maml:uri />
        </dev:type>
      </command:parameter>
    </command:parameters>
    <command:inputTypes>
      <command:inputType>
        <dev:type>
          <maml:name>System.String</maml:name>
          <maml:uri />
        </dev:type>
      </command:inputType>
    </command:inputTypes>
    <command:returnValues />
    <maml:relatedLinks>
      <maml:navigationLink>
        <maml:linkText>Online Version:</maml:linkText>
        <maml:uri>https://tfscmdlets.dev/docs/cmdlets/WorkItem/WorkItemType/Import-TfsWorkItemType</maml:uri>
      </maml:navigationLink>
    </maml:relatedLinks>
  </command:command>
</helpItems>
tools\TfsCmdlets\TfsCmdlets.Format.ps1xml
 
tools\TfsCmdlets\TfsCmdlets.psd1
#
# Module manifest for module 'TfsCmdlets'
#
# Generated by: Igor Abade V. Leite
#
# Generated on: 9/30/2022
#

@{

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

# Cmdlets to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no cmdlets to export.
CmdletsToExport = 'Add-TfsGroupMember', 'Add-TfsTeamAdmin', 'Add-TfsTeamMember', 
               'Add-TfsWorkItemLink', 'Connect-TfsOrganization', 'Connect-TfsTeam', 
               'Connect-TfsTeamProject', 'Connect-TfsTeamProjectCollection', 
               'Copy-TfsArea', 'Copy-TfsIteration', 'Copy-TfsTestPlan', 
               'Disable-TfsBuildDefinition', 'Disable-TfsExtension', 
               'Disable-TfsGitRepository', 'Disable-TfsWorkItemTag', 
               'Disconnect-TfsOrganization', 'Disconnect-TfsTeam', 
               'Disconnect-TfsTeamProject', 'Disconnect-TfsTeamProjectCollection', 
               'Enable-TfsBuildDefinition', 'Enable-TfsExtension', 
               'Enable-TfsGitRepository', 'Enable-TfsWorkItemTag', 'Enter-TfsShell', 
               'Exit-TfsShell', 'Export-TfsProcessTemplate', 
               'Export-TfsTeamProjectAvatar', 'Export-TfsWorkItemAttachment', 
               'Export-TfsWorkItemQuery', 'Export-TfsWorkItemType', 'Get-TfsArea', 
               'Get-TfsArtifact', 'Get-TfsArtifactFeed', 'Get-TfsArtifactFeedView', 
               'Get-TfsArtifactVersion', 'Get-TfsBuildDefinition', 
               'Get-TfsBuildDefinitionFolder', 
               'Get-TfsConfigurationConnectionString', 'Get-TfsExtension', 
               'Get-TfsGitBranch', 'Get-TfsGitBranchPolicy', 'Get-TfsGitCommit', 
               'Get-TfsGitItem', 'Get-TfsGitPolicyType', 'Get-TfsGitRepository', 
               'Get-TfsGroup', 'Get-TfsGroupMember', 'Get-TfsIdentity', 
               'Get-TfsInstallationPath', 'Get-TfsIteration', 'Get-TfsOrganization', 
               'Get-TfsProcessTemplate', 'Get-TfsRegistryValue', 
               'Get-TfsReleaseDefinition', 'Get-TfsReleaseDefinitionFolder', 
               'Get-TfsRestClient', 'Get-TfsServiceHookConsumer', 
               'Get-TfsServiceHookNotificationHistory', 
               'Get-TfsServiceHookPublisher', 'Get-TfsServiceHookSubscription', 
               'Get-TfsTeam', 'Get-TfsTeamAdmin', 'Get-TfsTeamBacklogLevel', 
               'Get-TfsTeamBoard', 'Get-TfsTeamBoardCardRule', 'Get-TfsTeamMember', 
               'Get-TfsTeamProject', 'Get-TfsTeamProjectCollection', 
               'Get-TfsTeamProjectMember', 'Get-TfsTestPlan', 'Get-TfsUser', 
               'Get-TfsVersion', 'Get-TfsWiki', 'Get-TfsWorkItem', 
               'Get-TfsWorkItemHistory', 'Get-TfsWorkItemLink', 
               'Get-TfsWorkItemLinkType', 'Get-TfsWorkItemQuery', 
               'Get-TfsWorkItemQueryFolder', 'Get-TfsWorkItemTag', 
               'Get-TfsWorkItemType', 'Import-TfsProcessTemplate', 
               'Import-TfsTeamProjectAvatar', 'Import-TfsWorkItemType', 
               'Install-TfsExtension', 'Invoke-TfsRestApi', 'Move-TfsArea', 
               'Move-TfsIteration', 'Move-TfsWorkItem', 'New-TfsArea', 
               'New-TfsBuildDefinitionFolder', 'New-TfsCredential', 
               'New-TfsGitRepository', 'New-TfsGroup', 'New-TfsIteration', 
               'New-TfsProcessTemplate', 'New-TfsReleaseDefinitionFolder', 
               'New-TfsTeam', 'New-TfsTeamProject', 'New-TfsTeamProjectCollection', 
               'New-TfsTestPlan', 'New-TfsWiki', 'New-TfsWorkItem', 
               'New-TfsWorkItemQuery', 'New-TfsWorkItemQueryFolder', 
               'New-TfsWorkItemTag', 'Remove-TfsArea', 
               'Remove-TfsBuildDefinitionFolder', 'Remove-TfsGitBranch', 
               'Remove-TfsGitRepository', 'Remove-TfsGroup', 'Remove-TfsGroupMember', 
               'Remove-TfsIteration', 'Remove-TfsReleaseDefinitionFolder', 
               'Remove-TfsTeam', 'Remove-TfsTeamAdmin', 'Remove-TfsTeamMember', 
               'Remove-TfsTeamProject', 'Remove-TfsTeamProjectAvatar', 
               'Remove-TfsTeamProjectCollection', 'Remove-TfsTestPlan', 
               'Remove-TfsWiki', 'Remove-TfsWorkItem', 'Remove-TfsWorkItemTag', 
               'Rename-TfsArea', 'Rename-TfsGitRepository', 'Rename-TfsIteration', 
               'Rename-TfsTeam', 'Rename-TfsTeamProject', 'Rename-TfsTestPlan', 
               'Rename-TfsWorkItemTag', 'Resume-TfsBuildDefinition', 
               'Search-TfsWorkItem', 'Set-TfsIteration', 'Set-TfsRegistryValue', 
               'Set-TfsTeam', 'Set-TfsTeamBoardCardRule', 'Set-TfsTeamProject', 
               'Set-TfsWorkItem', 'Start-TfsBuild', 'Suspend-TfsBuildDefinition', 
               'Test-TfsArea', 'Test-TfsIteration', 'Undo-TfsTeamProjectRemoval', 
               'Undo-TfsWorkItemQueryFolderRemoval', 
               'Undo-TfsWorkItemQueryRemoval', 'Undo-TfsWorkItemRemoval', 
               'Uninstall-TfsExtension'

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

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

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

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

# List of all files packaged with this module
FileList = 
               'Lib\Core\runtimes\unix\lib\netcoreapp2.1\System.Security.Principal.Windows.dll', 
               'Lib\Core\runtimes\unix\lib\netstandard2.0\System.Data.SqlClient.dll', 
               'Lib\Core\runtimes\win\lib\netcoreapp2.0\System.Security.AccessControl.dll', 
               'Lib\Core\runtimes\win\lib\netcoreapp2.1\System.Security.Principal.Windows.dll', 
               'Lib\Core\runtimes\win\lib\netstandard2.0\Microsoft.Win32.Registry.dll', 
               'Lib\Core\runtimes\win\lib\netstandard2.0\System.Data.SqlClient.dll', 
               'Lib\Core\runtimes\win-arm64\native\sni.dll', 
               'Lib\Core\runtimes\win-arm64\native\WebView2Loader.dll', 
               'Lib\Core\runtimes\win-x64\native\sni.dll', 
               'Lib\Core\runtimes\win-x64\native\WebView2Loader.dll', 
               'Lib\Core\runtimes\win-x86\native\sni.dll', 
               'Lib\Core\runtimes\win-x86\native\WebView2Loader.dll', 
               'Lib\Core\HtmlAgilityPack.dll', 
               'Lib\Core\Microsoft.Azure.DevOps.Comments.WebApi.dll', 
               'Lib\Core\Microsoft.Azure.Pipelines.WebApi.dll', 
               'Lib\Core\Microsoft.Identity.Client.Desktop.dll', 
               'Lib\Core\Microsoft.Identity.Client.dll', 
               'Lib\Core\Microsoft.IdentityModel.Abstractions.dll', 
               'Lib\Core\Microsoft.IdentityModel.Clients.ActiveDirectory.dll', 
               'Lib\Core\Microsoft.IdentityModel.JsonWebTokens.dll', 
               'Lib\Core\Microsoft.IdentityModel.Logging.dll', 
               'Lib\Core\Microsoft.IdentityModel.Tokens.dll', 
               'Lib\Core\Microsoft.TeamFoundation.Build2.WebApi.dll', 
               'Lib\Core\Microsoft.TeamFoundation.Common.dll', 
               'Lib\Core\Microsoft.TeamFoundation.Core.WebApi.dll', 
               'Lib\Core\Microsoft.TeamFoundation.Dashboards.WebApi.dll', 
               'Lib\Core\Microsoft.TeamFoundation.DistributedTask.Common.Contracts.dll', 
               'Lib\Core\Microsoft.TeamFoundation.Policy.WebApi.dll', 
               'Lib\Core\Microsoft.TeamFoundation.SourceControl.WebApi.dll', 
               'Lib\Core\Microsoft.TeamFoundation.Test.WebApi.dll', 
               'Lib\Core\Microsoft.TeamFoundation.TestManagement.WebApi.dll', 
               'Lib\Core\Microsoft.TeamFoundation.Wiki.WebApi.dll', 
               'Lib\Core\Microsoft.TeamFoundation.Work.WebApi.dll', 
               'Lib\Core\Microsoft.TeamFoundation.WorkItemTracking.Process.WebApi.dll', 
               'Lib\Core\Microsoft.TeamFoundation.WorkItemTracking.WebApi.dll', 
               'Lib\Core\Microsoft.VisualStudio.Services.Client.Interactive.dll', 
               'Lib\Core\Microsoft.VisualStudio.Services.Common.dll', 
               'Lib\Core\Microsoft.VisualStudio.Services.ExtensionManagement.WebApi.dll', 
               'Lib\Core\Microsoft.VisualStudio.Services.Feed.WebApi.dll', 
               'Lib\Core\Microsoft.VisualStudio.Services.Gallery.WebApi.dll', 
               'Lib\Core\Microsoft.VisualStudio.Services.Packaging.CrossProtocol.WebApi.dll', 
               'Lib\Core\Microsoft.VisualStudio.Services.Packaging.Shared.WebApi.dll', 
               'Lib\Core\Microsoft.VisualStudio.Services.ReleaseManagement.WebApi.dll', 
               'Lib\Core\Microsoft.VisualStudio.Services.Search.Shared.WebApi.dll', 
               'Lib\Core\Microsoft.VisualStudio.Services.Search.WebApi.dll', 
               'Lib\Core\Microsoft.VisualStudio.Services.ServiceEndpoints.WebApi.dll', 
               'Lib\Core\Microsoft.VisualStudio.Services.ServiceHooks.WebApi.dll', 
               'Lib\Core\Microsoft.VisualStudio.Services.TestManagement.TestPlanning.WebApi.dll', 
               'Lib\Core\Microsoft.VisualStudio.Services.TestResults.WebApi.dll', 
               'Lib\Core\Microsoft.VisualStudio.Services.UPack.WebApi.dll', 
               'Lib\Core\Microsoft.VisualStudio.Services.WebApi.dll', 
               'Lib\Core\Microsoft.Web.WebView2.Core.dll', 
               'Lib\Core\Microsoft.Web.WebView2.WinForms.dll', 
               'Lib\Core\Microsoft.Web.WebView2.Wpf.dll', 
               'Lib\Core\Microsoft.Win32.Registry.dll', 
               'Lib\Core\MS.TF.Pipelines.WebApi.NetStandard.dll', 
               'Lib\Core\Newtonsoft.Json.Bson.dll', 'Lib\Core\Newtonsoft.Json.dll', 
               'Lib\Core\System.Composition.AttributedModel.dll', 
               'Lib\Core\System.Composition.Convention.dll', 
               'Lib\Core\System.Composition.Hosting.dll', 
               'Lib\Core\System.Composition.Runtime.dll', 
               'Lib\Core\System.Composition.TypedParts.dll', 
               'Lib\Core\System.Data.SqlClient.dll', 
               'Lib\Core\System.IdentityModel.Tokens.Jwt.dll', 
               'Lib\Core\System.Net.Http.Formatting.dll', 
               'Lib\Core\System.Security.AccessControl.dll', 
               'Lib\Core\System.Security.Principal.Windows.dll', 
               'Lib\Core\System.Xml.XPath.XmlDocument.dll', 
               'Lib\Core\TfsCmdlets.Common.dll', 'Lib\Core\TfsCmdlets.Common.pdb', 
               'Lib\Core\TfsCmdlets.deps.json', 'Lib\Core\TfsCmdlets.dll', 
               'Lib\Core\TfsCmdlets.pdb', 'Lib\Core\TfsCmdlets.xml', 
               'Lib\Desktop\HtmlAgilityPack.dll', 
               'Lib\Desktop\Microsoft.Azure.DevOps.Comments.WebApi.dll', 
               'Lib\Desktop\Microsoft.Azure.Pipelines.WebApi.dll', 
               'Lib\Desktop\Microsoft.Identity.Client.Desktop.dll', 
               'Lib\Desktop\Microsoft.Identity.Client.dll', 
               'Lib\Desktop\Microsoft.IdentityModel.Abstractions.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.Pipelines.WebApi.dll', 
               'Lib\Desktop\Microsoft.TeamFoundation.Policy.WebApi.dll', 
               'Lib\Desktop\Microsoft.TeamFoundation.ProjectManagement.dll', 
               'Lib\Desktop\Microsoft.TeamFoundation.SharePointReporting.Integration.dll', 
               'Lib\Desktop\Microsoft.TeamFoundation.SourceControl.WebApi.dll', 
               'Lib\Desktop\Microsoft.TeamFoundation.Test.WebApi.dll', 
               'Lib\Desktop\Microsoft.TeamFoundation.TestImpact.Client.dll', 
               'Lib\Desktop\Microsoft.TeamFoundation.TestManagement.Client.dll', 
               'Lib\Desktop\Microsoft.TeamFoundation.TestManagement.Common.dll', 
               'Lib\Desktop\Microsoft.TeamFoundation.TestManagement.WebApi.dll', 
               'Lib\Desktop\Microsoft.TeamFoundation.VersionControl.Client.dll', 
               'Lib\Desktop\Microsoft.TeamFoundation.VersionControl.Common.dll', 
               'Lib\Desktop\Microsoft.TeamFoundation.VersionControl.Common.Integration.dll', 
               'Lib\Desktop\Microsoft.TeamFoundation.Wiki.WebApi.dll', 
               'Lib\Desktop\Microsoft.TeamFoundation.Work.WebApi.dll', 
               'Lib\Desktop\Microsoft.TeamFoundation.WorkItemTracking.Client.DataStoreLoader.dll', 
               'Lib\Desktop\Microsoft.TeamFoundation.WorkItemTracking.Client.dll', 
               'Lib\Desktop\Microsoft.TeamFoundation.WorkItemTracking.Client.QueryLanguage.dll', 
               'Lib\Desktop\Microsoft.TeamFoundation.WorkItemTracking.Common.dll', 
               'Lib\Desktop\Microsoft.TeamFoundation.WorkItemTracking.Process.WebApi.dll', 
               'Lib\Desktop\Microsoft.TeamFoundation.WorkItemTracking.Proxy.dll', 
               'Lib\Desktop\Microsoft.TeamFoundation.WorkItemTracking.WebApi.dll', 
               'Lib\Desktop\Microsoft.VisualStudio.Services.Client.Interactive.dll', 
               'Lib\Desktop\Microsoft.VisualStudio.Services.Common.dll', 
               'Lib\Desktop\Microsoft.VisualStudio.Services.ExtensionManagement.WebApi.dll', 
               'Lib\Desktop\Microsoft.VisualStudio.Services.Feed.WebApi.dll', 
               'Lib\Desktop\Microsoft.VisualStudio.Services.Gallery.WebApi.dll', 
               'Lib\Desktop\Microsoft.VisualStudio.Services.Maven.WebApi.dll', 
               'Lib\Desktop\Microsoft.VisualStudio.Services.Npm.WebApi.dll', 
               'Lib\Desktop\Microsoft.VisualStudio.Services.NuGet.WebApi.dll', 
               'Lib\Desktop\Microsoft.VisualStudio.Services.Packaging.CrossProtocol.WebApi.dll', 
               'Lib\Desktop\Microsoft.VisualStudio.Services.Packaging.Shared.WebApi.dll', 
               'Lib\Desktop\Microsoft.VisualStudio.Services.PyPi.WebApi.dll', 
               'Lib\Desktop\Microsoft.VisualStudio.Services.ReleaseManagement.WebApi.dll', 
               'Lib\Desktop\Microsoft.VisualStudio.Services.Search.Shared.WebApi.dll', 
               'Lib\Desktop\Microsoft.VisualStudio.Services.Search.WebApi.dll', 
               'Lib\Desktop\Microsoft.VisualStudio.Services.ServiceEndpoints.WebApi.dll', 
               'Lib\Desktop\Microsoft.VisualStudio.Services.ServiceHooks.WebApi.dll', 
               'Lib\Desktop\Microsoft.VisualStudio.Services.TestManagement.TestPlanning.WebApi.dll', 
               'Lib\Desktop\Microsoft.VisualStudio.Services.TestResults.WebApi.dll', 
               'Lib\Desktop\Microsoft.VisualStudio.Services.UPack.WebApi.dll', 
               'Lib\Desktop\Microsoft.VisualStudio.Services.WebApi.dll', 
               'Lib\Desktop\Microsoft.Web.WebView2.Core.dll', 
               'Lib\Desktop\Microsoft.Web.WebView2.WinForms.dll', 
               'Lib\Desktop\Microsoft.Web.WebView2.Wpf.dll', 
               'Lib\Desktop\Microsoft.Win32.Registry.dll', 
               'Lib\Desktop\Microsoft.WITDataStore32.dll', 
               'Lib\Desktop\Microsoft.WITDataStore64.dll', 
               'Lib\Desktop\Newtonsoft.Json.dll', 
               'Lib\Desktop\System.Composition.AttributedModel.dll', 
               'Lib\Desktop\System.Composition.Convention.dll', 
               'Lib\Desktop\System.Composition.Hosting.dll', 
               'Lib\Desktop\System.Composition.Runtime.dll', 
               'Lib\Desktop\System.Composition.TypedParts.dll', 
               'Lib\Desktop\System.Data.Common.dll', 
               'Lib\Desktop\System.Diagnostics.StackTrace.dll', 
               'Lib\Desktop\System.Diagnostics.Tracing.dll', 
               'Lib\Desktop\System.Globalization.Extensions.dll', 
               'Lib\Desktop\System.IdentityModel.Tokens.Jwt.dll', 
               'Lib\Desktop\System.IO.Compression.dll', 
               'Lib\Desktop\System.Net.Http.dll', 
               'Lib\Desktop\System.Net.Http.Formatting.dll', 
               'Lib\Desktop\System.Net.Sockets.dll', 
               'Lib\Desktop\System.Runtime.Serialization.Primitives.dll', 
               'Lib\Desktop\System.Security.AccessControl.dll', 
               'Lib\Desktop\System.Security.Cryptography.Algorithms.dll', 
               'Lib\Desktop\System.Security.Principal.Windows.dll', 
               'Lib\Desktop\System.Security.SecureString.dll', 
               'Lib\Desktop\System.Threading.Overlapped.dll', 
               'Lib\Desktop\System.ValueTuple.dll', 
               'Lib\Desktop\System.Web.Http.dll', 
               'Lib\Desktop\System.Web.Http.WebHost.dll', 
               'Lib\Desktop\System.Xml.XPath.XDocument.dll', 
               'Lib\Desktop\TfsCmdlets.Common.dll', 
               'Lib\Desktop\TfsCmdlets.Common.pdb', 'Lib\Desktop\TfsCmdlets.dll', 
               'Lib\Desktop\TfsCmdlets.pdb', 'Lib\Desktop\TfsCmdlets.xml', 
               'ACKNOWLEDGEMENTS.md', 'chocolateyInstall.ps1', 
               'chocolateyUninstall.ps1', 'CODE_OF_CONDUCT.md', 'CONTRIBUTING.md', 
               'LICENSE.md', 'README.md', 'RELEASENOTES.md', 'TfsCmdlets.dll-Help.xml', 
               'TfsCmdlets.Format.ps1xml', 'TfsCmdlets.psd1', 'TfsCmdlets.psm1', 
               'TfsCmdlets.Types.ps1xml', 'TfsCmdletsShell.ico'

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

    #Build of this module
    Build = '2.6.0+2898.5'

    #Commit of this module
    Commit = '276cfc95967009d424369acff5b0cbc8cf022d96'

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

    #Desktop of this module
    Desktop = 'net471'

    #Version of this module
    Version = '2.6.0+5'

    #Branch of this module
    Branch = 'main'

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

    PSData = @{

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

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

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

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

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

        # Prerelease string of this module
        # Prerelease = ''

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

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

    } # End of PSData hashtable

} # End of PrivateData hashtable

# HelpInfo URI of this module
# HelpInfoURI = ''

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

}


tools\TfsCmdlets\TfsCmdlets.psm1
# Private functions

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

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

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

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

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

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

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

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

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

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

    return $false
}

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

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

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

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

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

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

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

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

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

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

    return Get-TfsGitRepository -Repository "$wordToComplete*" -Project $tp -Collection $tpc | Select-Object -ExpandProperty Name | Sort-Object | _EscapeArgumentValue
}
Register-ArgumentCompleter -ParameterName Team -Verbose -ScriptBlock {
    
    param($commandName, $parameterName, $wordToComplete, $commandAst, $fakeBoundParameter)

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

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

    return Get-TfsTeam -Team "$wordToComplete*" -Project $tp -Collection $tpc | Select-Object -ExpandProperty Name | Sort-Object | _EscapeArgumentValue
}
tools\TfsCmdlets\TfsCmdlets.Types.ps1xml
 
tools\TfsCmdlets\TfsCmdletsShell.ico
 
tools\TfsCmdlets\Lib\Core\HtmlAgilityPack.dll
md5: 643291E379175304213167B8F0660E8C | sha1: C2F04DD71AE3C1782354B33C45A03AA03D5EAD5B | sha256: 32F024CDD195614DD499C10A4622A44CB0F9FBB41CEA71EAB455CC3C083144C9 | sha512: 55FA42C1219912BE5EAE033A4499127DF099BE0EF7057C09B3A605D5897749F75D2315A73EA7E0A53909064B591124A830553141BF05C47F4747C908FC0EB9B6
tools\TfsCmdlets\Lib\Core\Microsoft.Azure.DevOps.Comments.WebApi.dll
md5: 6E23138B4463338E4211F8F5B3A4C620 | sha1: 083C3BCC1E8FE3FA405002831DB21A9763088590 | sha256: 4A4B391FA0485B754E21AB908FAF320B01B06DC8893D48919A315A84E923BC99 | sha512: 19560EE6B66667C57350ADE5A6931652A3A2B69E3579D28CE1C0FDFDDAD97F7139BD47875698495DA7D2EEE0F5E4EA021B4F3FAA5CF24F82A72A5854E57E6B3F
tools\TfsCmdlets\Lib\Core\Microsoft.Azure.Pipelines.WebApi.dll
md5: 120307EF472E9B949DE64E74467F776E | sha1: E3C7C684D92F506D172C580273CDC3115D2DDC51 | sha256: 5F0C244BB1C8955F7C8DA4865B8C1E55EB2D71E11E2BD445CC7D3AAB985AE35C | sha512: 8E40C356AA6EA1EB5346D0A981E6233D54F2599DD6749D0543A93E1DF8834837E9B25F834786E2F241C0F0FA97F6F36C4539EE173D3EEFB853086B7B070F1C4C
tools\TfsCmdlets\Lib\Core\Microsoft.Identity.Client.Desktop.dll
md5: 95BD3FC95E86BA90BB8C90F81961A034 | sha1: BA2C0BA6AD823838CF91D165300CF3AE884E291A | sha256: 8BF4F7EBDB7FB55C54F2C5BB270682F35516BC52167689AECB36C2371E0BC3E8 | sha512: B9A3081D1E6A105316385924504F5F4C5D624A99FF5F62F5CE013345A0A47987F4C38BA3709716A445A68B53FD9AEAE142F772480A8463009F67E7808CE12D16
tools\TfsCmdlets\Lib\Core\Microsoft.Identity.Client.dll
md5: A9DF51ADECE988C848701FA50DA362BB | sha1: E8D4D256488283AB38E298B4CFAC2C6D23CF979B | sha256: 98CD2134F89593DB787B2F7EA0DAD6A3980C423D566ABF772827D017099C5FD2 | sha512: 0EDF087681031C37A87139CC6CC6B5096B2A87013EBF6F8731B89BCE9582E4B9753F11E1BA0E2B646020E6AAAAF5CE6A996FAF5F4B8FBCBC3DBF5AD4B2B3DE41
tools\TfsCmdlets\Lib\Core\Microsoft.IdentityModel.Abstractions.dll
md5: 3486658A6766BF7E665774E6854B2322 | sha1: 77E77A8F6C1F7D94770262D00E1D7B4424EC3FB9 | sha256: 9755FBD56BE4BE3268196E536A34B2E816E409D31EC6DC395CDFB08DA3652902 | sha512: 594B56E8EE4F86BB3C5C3B9BE7B281743BD082ACE7DF13B57B9544CA8360E0B0714822E5BC0660BADE45715EF8F5856D483B93CB62608E9EED055822F8971F6F
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: EB2E00E667B7502AFD87232B734D8497 | sha1: 0C30E34B64A030E6E62749A419A3C6FF5BD79082 | sha256: 59ED6FB67BBA4B59F1EB1AE62D5EF17E26A5DD0CF86EEA3BA8291E562A21868E | sha512: 5529D818076A6C6E63A96BA1CC12A47BA5F310FFEE08DF36385C0E74DB5513237E25FA6765EB3179C381E0D403B7C99EC8D158279F747CD14284C5C994FE2C4C
tools\TfsCmdlets\Lib\Core\Microsoft.TeamFoundation.Common.dll
md5: 5E280F7DE10B3DE380F49BF2AC1E3D6B | sha1: 2FC770B60563E98A2F4F3725EEF2A4F8BB3ECD9B | sha256: 5342A229F651749B7DFCA6D541AACF31A9ED8DCF8DB9D03576E7C8B2DDD6512C | sha512: 3DF50C3CE849BADEE8DFBFEBC09C068810BE5DE26755700B9CC933AD043369129000D7C4779A8249473F2BD68741AD8EA291C98E8B3C7716FFCC72521313806A
tools\TfsCmdlets\Lib\Core\Microsoft.TeamFoundation.Core.WebApi.dll
md5: 27FDB04E8E1D56932700FA0C5ECBD4CC | sha1: 178BB4F98AC651F83B85BF0E210B061DED0E5E8E | sha256: 93973CF4494A5CD945557073DA9B3B6EAAE8B987FDF9047DC72737F73A0EC9DD | sha512: 4B0664D4B8F5516DC950C90C158124FE11EAF869215276226FAD4F242D7F55EA9FA39D682CEF117ABB295CCFF621D3C6EC85DC76AF1B2EE7713D18D70BE63629
tools\TfsCmdlets\Lib\Core\Microsoft.TeamFoundation.Dashboards.WebApi.dll
md5: AB0127619255F22C7CDAD77DB4AE1BE6 | sha1: FA975BD5EA67278D51CE40046BC8C9789D79D0CE | sha256: 527D6006564C2BA457AF4EA57F3CB158FBD1F319D3C4778E351C4BED73BE65FC | sha512: 22498A9D0D547FBB11070BAF1034612F3E4F9A9C8D44FC394EA27840799FB8B69A657A7F8E17BAF5469331FE8FBF57E4C053AC0626301FB6846213E62082F130
tools\TfsCmdlets\Lib\Core\Microsoft.TeamFoundation.DistributedTask.Common.Contracts.dll
md5: 1BB3E3F0F083BE76CC3378D1F098DBB0 | sha1: B3974AE890EF0D7E970A926954929647D8C20C5E | sha256: EED74D9EA833EE2B45373C6922B652784716AD7D483C08AB997DE2A0CDC4ABE0 | sha512: 9AE6A3BEA1834B31665A1B6ADC356BD0FA4D71E54F50395DC4FC76D2968C6D24D45215E00FBE3A7684A390943361E616D0AF84724DC060D9C1353DEB86F68E23
tools\TfsCmdlets\Lib\Core\Microsoft.TeamFoundation.Policy.WebApi.dll
md5: 0BC51F9816DE225CFDB530F244327E6C | sha1: F2A97747C8952F8FD7A677ADD76178E2E7C03A94 | sha256: 7F798354E5421316BC52959BCCE0ED119FDB1AF4766E9D71B2C28EDF7A0313E9 | sha512: 2A01B94C7F72F30AE33EF9770B77CE8EFF7547F1EC46C6821BC3C6E4B39DC615E09D1908218CB782B9A6B45AF0B0C49701AF9E96D69AC36378EA3B9ED7A4AEA2
tools\TfsCmdlets\Lib\Core\Microsoft.TeamFoundation.SourceControl.WebApi.dll
md5: F47929EF5095348B73579299DA423C1D | sha1: DA4249D18E3061B96DB149F80A1CBD55F89FB9EF | sha256: 6692DBE181A86D9A52AE0DE9238F3F27A3EBA00430A340B78D42A384C7DB00B6 | sha512: 7F0DAC26C47A8C8F078EBE709CF470A9AB47AC9CDF9853B89A99CD5C44CC6F37C59D6F34A395A10DC5A92A4FC7E3031B262102C6BEF896152421BF4C11CFAA29
tools\TfsCmdlets\Lib\Core\Microsoft.TeamFoundation.Test.WebApi.dll
md5: B9B2520D30B3F5AF3AE506934B83E47A | sha1: 133F47206B2C1ED56807E8356136F98F9F796107 | sha256: 507503CAB2D3D5B10022F02AC528D43FD02F885296782D599D6754C7138F54B3 | sha512: D5BF4121ABEE795D0A2C8360629FD46A58922F6AFC526F1A769D962DCE72D74B444228961949B39789EEF2381DF357EB843FD8565C5F9AFD867CF3966739DC6A
tools\TfsCmdlets\Lib\Core\Microsoft.TeamFoundation.TestManagement.WebApi.dll
md5: 8374C63A88552C310FBA870253DDC2CA | sha1: 7505B83D3BDC9486D1150953666738392B45C9BC | sha256: ACA6397AC0FDE9D917060301EB91B3F1370F09D92CB1D082578FEA6B6FB78B1A | sha512: 0BEECD1C842CC12CCC8CC9E61562262F72656B869E5EF7FA8C03061920DC4F8F5C93BAB5C3DF70FCD7CB6A46E4F82F1E2FFAE4880DF132B3C41D2FD97F5E67EE
tools\TfsCmdlets\Lib\Core\Microsoft.TeamFoundation.Wiki.WebApi.dll
md5: 693C61F4461F33535554C0E894F8ADE6 | sha1: E83AD665DFFC606EC79364174A3C36EFA52BC8CE | sha256: FF29B2EA5A8B94E4D6D2ECDE22EEDFA9C8AFB0D7980F15CDC47E1128A784A4AF | sha512: AED41686DE697CB10424315B628D482256D4CE36E62A263E69A5B25463D2D1D21C93408C6C4A402B471D94E17DAE864A20DE183D004BD96D8640F62E91F92E4F
tools\TfsCmdlets\Lib\Core\Microsoft.TeamFoundation.Work.WebApi.dll
md5: B1E20E7619D5D76D8BDC769210F2F0D7 | sha1: 7429F9C5D615D47F5296CAEDAC821D87B1065575 | sha256: 08C9FC0599B482BB492E696FB9962873FFF649AF31B594A6EFC06A60DBA3FB27 | sha512: 7944CDBCDA51A06F465EC1E6BE93AA41F6EA77ADF0042EEA1658FB8FB70A67B7255913D438AA0BE65BE9D297376B03DA98030330F8CB4985B734B4AD156AB05A
tools\TfsCmdlets\Lib\Core\Microsoft.TeamFoundation.WorkItemTracking.Process.WebApi.dll
md5: 8D9F106E708963798F35816C0259582A | sha1: 8782486F8E28D34BC9FFA32AC672C428F6DCBCF4 | sha256: 94C79F4C375187BCD0583578412FC2FD6FDD8000F7AE6F67EACE5EABD1F0FB77 | sha512: 6D113722A63C53F9E32EAE8BDD2852DA0E8698849E52D868DC07E723D4C4DF8BB8322B7342227A1EB3E33D4602748716B5F781071B44495E1ECFA32DCEDEBE23
tools\TfsCmdlets\Lib\Core\Microsoft.TeamFoundation.WorkItemTracking.WebApi.dll
md5: DEC059D77B697CD20F34D9C8294E8B89 | sha1: 81B665F5F12B6BB2AE83F7CDAF8857C2031C3A26 | sha256: 06F155274C73263F2D59FFF287656A52722045D6ABC66FEAB3A6E231EBB17B1C | sha512: 727578954431EF2633C5F74CBC408F909E386D8637B7059F0D6EB468A2FD579299FC521E2D6868EE1D66A9743BDD7A62EF66BDB4E836B0CDA88405A73E837601
tools\TfsCmdlets\Lib\Core\Microsoft.VisualStudio.Services.Client.Interactive.dll
md5: FFEDBF0C727DA3F860607D5D7BB505D3 | sha1: F4E70507116C906391F4BE51251D29B45BC9627F | sha256: A6B8B51BD58DCF557B91B1B7E54F999240EA227DD9FFF2502DA75B1154220374 | sha512: 6A8EE4BEE763DAFBF68F14DD7271A1C85D1DE25A69592AF9D88B68176EA7E816CAF9F6430B517C506D0EB7D75657FA3CA18E821874592F66FAB24E43BE563892
tools\TfsCmdlets\Lib\Core\Microsoft.VisualStudio.Services.Common.dll
md5: 34DBE31AE7AD0073733052409831BEAC | sha1: 62FC2655E2CDCAF759891281D6244E1A78FF4521 | sha256: 930FB9936FC17166848D0DD6DA464A2EEE30C4327EA5268BE81F3177496C449B | sha512: 0D4962778002A9E6BFC92761157A8EA311DE291472A3D735AF57CCCF520E6D2B3A7DC1137FB12446923084B266F3323A2E42B70BF7634286DEAB86C8840C657B
tools\TfsCmdlets\Lib\Core\Microsoft.VisualStudio.Services.ExtensionManagement.WebApi.dll
md5: FB1FF4A568DB762A3F14D5EE195C3568 | sha1: 1F978A4DC31DCF26910562BCAF70B13DBFF98CC0 | sha256: A8356ECB1E44922A67F28FF5E5A287C796CFB0A49B11C7930065A755A236EBC7 | sha512: 8C2935BE9B7D3E067CD46B626BA26471EE8DF4581248555A0472FA53B3DD16D16118D498DA26E7473D2F7D24117C34CE739502A897A8ABB36839713D93D4D117
tools\TfsCmdlets\Lib\Core\Microsoft.VisualStudio.Services.Feed.WebApi.dll
md5: 7A3AB2F916031258C016941E50195E6E | sha1: AF84E472303DB550F490472489440DE01C818546 | sha256: EC6812A1C6B8C1C4E8DB71672C45F7753129975B7C5F2E3D652C7239B14E76C1 | sha512: FD1BDB245A960150D78278DA41D458D598D5AA82D76BDF056CD679E1A659027D23B3CF301603E8D1EEB9AF49E1EA0D1D0685EC51C08F8004F4AE85D91A300B8A
tools\TfsCmdlets\Lib\Core\Microsoft.VisualStudio.Services.Gallery.WebApi.dll
tools\TfsCmdlets\Lib\Core\Microsoft.VisualStudio.Services.Packaging.CrossProtocol.WebApi.dll
md5: 07906D6CE15AC87D6A263037E702157B | sha1: 2EF283F42A02F610486089007144695421017197 | sha256: 2339DB89D5281E3F2718F009B1C3DB26F56D460C2098E9A4E36617EE914AB028 | sha512: BEC4E53066B9152C50991E9F066FA27D158D51A5A9C9B71EF020B9CAACC0F2E1D558DAE0D92C190900AA5AF5F5F38EC93C99126C91DEB5DE56FF311A047C7DB9
tools\TfsCmdlets\Lib\Core\Microsoft.VisualStudio.Services.Packaging.Shared.WebApi.dll
md5: A466CAA8F0816D857691506BA506ACFB | sha1: 503C9461F9C254046B5B1CEE38689DDB38FF9F34 | sha256: 0B0E8F52E30399669AC06510B2B3AE9B262B67B5E6FEACC0F5F08E89EF54DC24 | sha512: 3D0556D423C20C292BCA037B87BA45E2C5C883C28C8F8EFB4C46356A83B150AFD9DEB232C6FEAEB6D1AD18D63C72762483F37F3A412EA9B8768B9E80087DF0BC
tools\TfsCmdlets\Lib\Core\Microsoft.VisualStudio.Services.ReleaseManagement.WebApi.dll
md5: 590A48999BC2CAEF0FCB19F7BBD84415 | sha1: 66FD981B3517B6533BA5AEFDCAC08F20129F983B | sha256: 7E0F0DE4C1256CF126701DF7901CC03A0750B6247D43249E2522F9B24C18665C | sha512: DF62CA19104A21B2EEA9EA302A377A2054F4AF0783F768CFE5B1ACE7E62A048AE77B2938BE8D163DD704C7656F1F1E9DEDF53D33644C27B534F8B6EDF6C7D0F3
tools\TfsCmdlets\Lib\Core\Microsoft.VisualStudio.Services.Search.Shared.WebApi.dll
md5: 33A5769F56018830BCF64B65CD800764 | sha1: 41B45C72A533089B734A32B23BCA2E8EB91C476A | sha256: 22572CFDDFA1CC5DA2D68F62D2AD96C2C5C75DC06EAE39E90651FD8F55003A9E | sha512: 16C9E52A8586A52B92E268EF30A39D95F07D2CCA6D420BA0D5E29A8AE8FD28D22EA2AE80BF3B684872DF724C93C41E1A32C19405E1853C8DB4A2CDD17517E37F
tools\TfsCmdlets\Lib\Core\Microsoft.VisualStudio.Services.Search.WebApi.dll
md5: DADDF5833FA324159F6BBBD0A9307584 | sha1: 92E0A98C4C7FD2CCF37DB230D4DD4CD55D0DCE62 | sha256: C1E26C9DA4732DF5B50AFDF345E124ECE11E380989F2E8D595379A328FF53BF3 | sha512: 1F2C8D48393F5A20C3A4365FF9B129AE3748D097DBD70A84EA544502F1E42CC9B8ACC3BAD2A4AE07D388A0B10253092386A3AC00713F1CFF8D45F200ECF8021C
tools\TfsCmdlets\Lib\Core\Microsoft.VisualStudio.Services.ServiceEndpoints.WebApi.dll
md5: 0EF53D0C55FF37BA21BB45369E292618 | sha1: 8096A4F7F615E3D2EB160861C4CFFE2F9B6313E1 | sha256: 733FFBAB8B921B8B99F6C77C3B5AB083DBD6BD95DF14863E5906F1F5C2509460 | sha512: BB681140F30BA64521AC85970FC6E30CCCBCA8B5ADF5FD260AE429AA2830381B3AD4D7EA63FFB6545DFB5B202C2D0EEED2BB3E012881C7006DAD8E4868BD98EC
tools\TfsCmdlets\Lib\Core\Microsoft.VisualStudio.Services.ServiceHooks.WebApi.dll
md5: F4199E16A769AD1245BFC5564D52B569 | sha1: 183522878ED34B176196D79E396B1BD9EDBBEE7E | sha256: D7ADE1AA9B32675101D5ED8471F7DAFF2ED91CDFB80083E0DD31E592C83CC187 | sha512: D00774535F412D8F215EE9EA0600F58D5B362D30D9D37D49F3F16E4C695E6858293E31A29DC8F028876D7D41193E2517D0E6200CC59084D057F5809800D66C60
tools\TfsCmdlets\Lib\Core\Microsoft.VisualStudio.Services.TestManagement.TestPlanning.WebApi.dll
md5: 80C0305AE39192DA807C7198A098C754 | sha1: 319D5E5F43E128DD20E4663B7C477B0F0A437A2F | sha256: 9C232A3F77B783BEA0C446158E261F24309A1C649B1ADAB365D01A15C7C84A7A | sha512: 422B545A38685FF9B315CD8FBF84C2F88EFEE01DC720EF51A87B54979B33F8E91C3F5EDAF6E18A678C8120C7AF6E3C89D9DF72539A6129AAE28E0977E12AE7B1
tools\TfsCmdlets\Lib\Core\Microsoft.VisualStudio.Services.TestResults.WebApi.dll
md5: FB204382BCF253AD1C087AF2D442315C | sha1: 04391FD23F71E3ABC18AC10B1610CE0CBACFC3F4 | sha256: 79456C6E8DEAA60E5C085A7C8EFC6E392E7249931D4BBE41177D717E4E76DD57 | sha512: 1C188118525E6B8FA16463C6F68A363FC12FDC94AE4F76A012FA3DD48028A6C05067C17B3B0A9358B92CADA8CB52BA2C44C2D0CF8F30FF4E2FCAC6024A4BDD05
tools\TfsCmdlets\Lib\Core\Microsoft.VisualStudio.Services.UPack.WebApi.dll
md5: E6923140246E687C9850EFD34CE1951F | sha1: C0EB86E1CB1527D457EDB6818AD6BD83EC8F9FC0 | sha256: 2D1ED065EE0FF2651FE64ACA1AC998976212A28A57393BD3504DF3E0BB633FBB | sha512: AF87B51D7ECAF1AB16C6FEB31F118F65393B5CEDB649D9818F7E42BEA857EF7D08C071D7F74264232517E0BEA2874E766ACB011067AFE2EC0E1DC946CB172600
tools\TfsCmdlets\Lib\Core\Microsoft.VisualStudio.Services.WebApi.dll
md5: 4E22D74CC044A6C8794E6F26F6165EFA | sha1: D6683F57B734C085C29AE0B61B22F70B0E298C8A | sha256: A07C43AE8E82F28681DCA3E358E6C0D475534827521C9C57332D521C09A85D3A | sha512: FFE2FAC79ED10FAA97AE71597077C94383EEA86279A66BFEF95185EDDC4E06FA7C9D2489006DA1043C54F04EDDCB9EF0D56B27EAD94D57795F54B54DC6661377
tools\TfsCmdlets\Lib\Core\Microsoft.Web.WebView2.Core.dll
md5: C120BD403156F7D1E1DBD703AEEFE043 | sha1: B9122AE2D20A2C24DB38BF42F0CB2C0E626A69CD | sha256: 966B9271B90BDDF080E6A21167A2EB78B16AA94544F6BAFAF66301F8EE91DD53 | sha512: F8E7C38B0BA06B8DB009693271FF941ABB31876A8BEFA2BFEF6B3E51DC118336E752521582DFB702D6E2550E434F5FF369BE36FA259FE285DCD69605EBC95045
tools\TfsCmdlets\Lib\Core\Microsoft.Web.WebView2.WinForms.dll
md5: D2FCC2F1F883473D4D458D6255C2A521 | sha1: 58D0FC4D629160DE1912FDDE59836FB79330481B | sha256: F95DD48CDA883948054A17569165621EA6DDFDDDBE6EBABE8B579147005B03DB | sha512: 3DC25DB5BA1556F5EAC667789772106BFDF8AB90E20DC03FD51B4CBC8E265263A9473C20173A33379E0F2F65D2308FDB4D0E1CB771B1C6284F06B5D44EB70D86
tools\TfsCmdlets\Lib\Core\Microsoft.Web.WebView2.Wpf.dll
md5: 7C2A4C75E218302EC6DE07EE205A61AA | sha1: 23A4E2A5FB81C1168D5A7DF8D14A8B545680E737 | sha256: E1042133C8F2A3D68342E7E73856609D4CEBC2C92C307D5BE1C5FFEC9C80ABC3 | sha512: 60F37F8C9F2DA61007FC546E751B987E432A3FF80E9891C21A03223713DF498734269360E20D53CDFED3893BBAEADBDC8CD21F7AB73C4AE5790E08598D782B13
tools\TfsCmdlets\Lib\Core\Microsoft.Win32.Registry.dll
md5: E1D9A5B63A29E0BE888CA6952700AB83 | sha1: 819607A0C5ACD057219E22CC1174A2E3078B9D6F | sha256: 340933AD6701077AE9B8035E4671803D86074AB32F2DE8165ACFDB954BD260F6 | sha512: 5E153BC90195E20E503C8C04B1361598947DE3500C8C6F6FD6BAF0E245AA5AFC7D84BF55787D11914A28C0E8186A29360A94FCC8B816F482045B7032EA8738D3
tools\TfsCmdlets\Lib\Core\MS.TF.Pipelines.WebApi.NetStandard.dll
md5: 29A49C438E249CEE6AA7BD4E3C5C49DF | sha1: CD49AC1E2C50F9277B75D88F97D02002B0B78743 | sha256: 36BE76FF937C6DA0375FD590B0DE9A883276A978B78EF2FD913F5484956336A8 | sha512: 5183B866E17EB49737173E278DA3E515817AD7E3707E69DD35F425490C5DB34306E4726B12FC8DD10648FD9E7CE0423DB564B5C638FF7857E82056ED52465235
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\System.Composition.AttributedModel.dll
md5: 0B507275C25FF8F854844E51F51ED85C | sha1: 497932A7D120F0103BA80639A346AF0E34CFC9DC | sha256: 64BB552741173A7B10DA691904E61049622950C3771145C023EC7F282A699256 | sha512: F3B6C7B7792223A3019CC9C616328B6AEE338286F2857F86869442871EF24A6B67B2577D69D36E02C5B8DC480B9F6095AB137F6B027364021121488CC7B428D2
tools\TfsCmdlets\Lib\Core\System.Composition.Convention.dll
md5: 89D4DE0465A232C039CE8F60F0C81537 | sha1: 849EAA2AEF905E0AF625758870D2761329EEDCEB | sha256: 73EF9B23D07E450BC6D08233265A528D24C7719719DBF74B1848D9431474490C | sha512: 830DB9013186D2C2198122F7C715C10FAC4F9A85748E7DD89667AB87DDB5BC040957B7F7059BE8B3E823A40403928C31D5495EDDCCABBA6CF130E60432BF41FA
tools\TfsCmdlets\Lib\Core\System.Composition.Hosting.dll
md5: E643EE4707970DB8997839D1DE2456B9 | sha1: 040DF8386AF934E6C1A5AE5ACDECBE27E143F67E | sha256: B8413F9A8F32376FC2D230CAD8C2BDD8A91A6F6079A08DCBBDE92874B7C4C4FB | sha512: 33153194B3392A52F68BAFCB997B4B6D746D83675B71CF10232AD386CA6A28DA16C4873FAA0EADFFBA9348095D3C9F27570AFD1230700037AD18FA0000089048
tools\TfsCmdlets\Lib\Core\System.Composition.Runtime.dll
md5: BDD4AC62233E7754AE5E970EC5E19A6F | sha1: FBA907311BED5FFD1320D9972C52C82D27A0550F | sha256: E400CB760624A96A7E315048879B97D749AFCC0C0E3718D3E7F446AE034DBE51 | sha512: 4FBB31466C4FFDF5E892B451BF808222737EB982310A202CF7D79F8C7A43E1F01DC67BBC347C604E97DD9F64FEDA18CED6CE84F37232BE76153903AF7D8B20E6
tools\TfsCmdlets\Lib\Core\System.Composition.TypedParts.dll
md5: 014289441A535340982067A5664D3CD3 | sha1: 6147B32721ECD51B48DBA61D5D7A0B4F9FAF3841 | sha256: CEBFB9D7AAFCAAC8990965AA4E825533022D64F2E9170A30134EC455D0C76DAF | sha512: 885B17E91A284B93C8D852FC963E79B56810A0AC3B64383632ED03EF20D93342F7EC053D2A9699812A32CEFD58817007580DC5C5BBEBEFEEB8DE927CB4B0FA6B
tools\TfsCmdlets\Lib\Core\System.Data.SqlClient.dll
md5: 450B029703D4B740F6E0A2930660ABD4 | sha1: 0EA7A1968CB1C639CC767496A6E20B8D3E6F08D7 | sha256: 1A14BFB3D4CDAD50FF71869ACCFAC5A08283A7CB03C03D8BB2D00A728035056C | sha512: 38E8D86A183AAC8F070617D5EA4BB109C79742ADBC8551343F385983446201AAEDFF059926933DBB4E76AE747EC5FC786363DAD80D589BECFB3A766107A8DC4E
tools\TfsCmdlets\Lib\Core\System.IdentityModel.Tokens.Jwt.dll
md5: BEB053CED12524CD30929C39FE042C47 | sha1: 921E59D904D6C8E2BAD5FEB738C01798A83ACD6F | sha256: 64ECBB6C584D9B3394CE519EE75ADEE80D4AB54FFEBAAA8423A08F105B34C9EE | sha512: 739AE832BB78F84BAFDC15AC6F7DE9CBEBE30FCC73F4FDB8829AFDDCD18ED3959FA7665FAEA8160FB75BB4574DE299EB7E0A2D794278C7C121C208CE334E01EB
tools\TfsCmdlets\Lib\Core\System.Net.Http.Formatting.dll
md5: 02E47079A1B45F4FD8142752C91970E3 | sha1: E8016192D0A6738CD075F837109845376B270F14 | sha256: EF32858203F7263AA5767BAE4E94567FA1B3CDEDE214BA87603009C1C17B264F | sha512: 72DD2AED377786C0823DC4DE58A4D6A9E484E766F570E14D5C700003026E834EDA53628E7DAD2AD9DBFCE6706C52C2320900EE4CEEB062BE97A255FB46440918
tools\TfsCmdlets\Lib\Core\System.Security.AccessControl.dll
md5: 2AA3BE1A5E32B7FC89EE5460A2C4DB18 | sha1: FF27582916B77D75DF896399EDE0B9E8FFE369EF | sha256: 93084849C17A21F641C13C9F17545CFE18C1EC097561F3F0EBBBE26F358BA120 | sha512: F470FE10E0033A8D96DE8A747243EB1F90E07108873270D4CA538A02F46AB20232FD715B05A2F23357C0D58B0C845C4E7EA35F453B90AEDA2942F36D57D6D498
tools\TfsCmdlets\Lib\Core\System.Security.Principal.Windows.dll
md5: A1F634780387AB0B5219A8741366F4A2 | sha1: 0CF42E1BD78443AE1D6C16223A7FF463C5105D21 | sha256: 7828DFD952A9FD49404477BAFF714849177D9F18C0654ADAFADBDCAFB4B21F47 | sha512: 77A1A74ED08C746C0DE4D523D0128233EBE8AF601127BFF5A2531A8F062AC83D2E6C792B54AB17ECB0CD4EF4A9CE3216975953CEAE8EBAF26374BF809A79BFD0
tools\TfsCmdlets\Lib\Core\System.Xml.XPath.XmlDocument.dll
md5: 8EFE31B7D4FB847DCED560A22C58351F | sha1: 4DD5626698A3F42CA7F4DC90D5629F4DFFA6198E | sha256: D81F08289AAA767B44B3335A87196EC736596CE38FEAAE218ECABB9E97E02D5D | sha512: 0B3DEDC13F8431D554635958CEA531F33075B1E28A109676998A42ED3FE23E887FE830E115241653A565FA422222ABD5F6DDB086003099C464A4BD045202BF8C
tools\TfsCmdlets\Lib\Core\TfsCmdlets.Common.dll
md5: 62B640D2B94387CAAB7C3283FF7540F1 | sha1: 2E5FA646B96EB50D01108F6B1553A7DA4F0081ED | sha256: 0B0B70B460B2D6D429615678EA66D481F503866D34ACC68C394A6F9A5A44E322 | sha512: 7B9355A61240CB41FCED4A3151FF26F8BEC746B505F79BC61118EC251BE724D99A7C66914EF6505314DA17C4FC4649C20947682488F46302254F10B7D364FD5B
tools\TfsCmdlets\Lib\Core\TfsCmdlets.Common.pdb
 
tools\TfsCmdlets\Lib\Core\TfsCmdlets.deps.json
{
  "runtimeTarget": {
    "name": ".NETCoreApp,Version=v3.1",
    "signature": ""
  },
  "compilationOptions": {},
  "targets": {
    ".NETCoreApp,Version=v3.1": {
      "TfsCmdlets/2.6.0.2898": {
        "dependencies": {
          "Microsoft.TeamFoundationServer.Client": "16.206.0-preview",
          "Microsoft.VisualStudio.Services.ExtensionManagement.WebApi": "16.206.0-preview",
          "Microsoft.VisualStudio.Services.InteractiveClient": "16.206.0-preview",
          "Microsoft.VisualStudio.Services.Packaging.Client": "16.206.0-preview",
          "Microsoft.VisualStudio.Services.Release.Client": "16.206.0-preview",
          "Microsoft.VisualStudio.Services.Search.Client": "16.206.0-preview",
          "Microsoft.VisualStudio.Services.ServiceEndpoints.WebApi": "16.206.0-preview",
          "Microsoft.VisualStudio.Services.ServiceHooks.WebApi": "16.206.0-preview",
          "Microsoft.Win32.Registry": "5.0.0",
          "PowerShellStandard.Library": "7.0.0-preview.1",
          "System.Composition": "6.0.0",
          "System.Composition.Hosting": "6.0.0",
          "System.IO.Compression.ZipFile": "4.3.0",
          "TfsCmdlets.Common": "2.6.0.2898"
        },
        "runtime": {
          "TfsCmdlets.dll": {}
        }
      },
      "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.Identity.Client/4.47.1": {
        "dependencies": {
          "Microsoft.IdentityModel.Abstractions": "6.22.0"
        },
        "runtime": {
          "lib/netcoreapp2.1/Microsoft.Identity.Client.dll": {
            "assemblyVersion": "4.47.1.0",
            "fileVersion": "4.47.1.0"
          }
        }
      },
      "Microsoft.Identity.Client.Desktop/4.47.1": {
        "dependencies": {
          "Microsoft.Identity.Client": "4.47.1",
          "Microsoft.Web.WebView2": "1.0.864.35",
          "Microsoft.Windows.SDK.Contracts": "10.0.17763.1000"
        },
        "runtime": {
          "lib/netcoreapp3.1/Microsoft.Identity.Client.Desktop.dll": {
            "assemblyVersion": "4.47.1.0",
            "fileVersion": "4.47.1.0"
          }
        }
      },
      "Microsoft.IdentityModel.Abstractions/6.22.0": {
        "runtime": {
          "lib/netstandard2.0/Microsoft.IdentityModel.Abstractions.dll": {
            "assemblyVersion": "6.22.0.0",
            "fileVersion": "6.22.0.30727"
          }
        }
      },
      "Microsoft.IdentityModel.Clients.ActiveDirectory/5.2.6": {
        "dependencies": {
          "Microsoft.CSharp": "4.3.0",
          "NETStandard.Library": "1.6.1",
          "System.ComponentModel.TypeConverter": "4.3.0",
          "System.Dynamic.Runtime": "4.3.0",
          "System.Net.Http": "4.3.4",
          "System.Private.Uri": "4.3.2",
          "System.Runtime.Serialization.Formatters": "4.3.0",
          "System.Runtime.Serialization.Json": "4.3.0",
          "System.Runtime.Serialization.Primitives": "4.3.0",
          "System.Security.Cryptography.X509Certificates": "4.3.0",
          "System.Security.SecureString": "4.3.0",
          "System.Xml.XDocument": "4.3.0",
          "System.Xml.XmlDocument": "4.3.0"
        },
        "runtime": {
          "lib/netstandard1.3/Microsoft.IdentityModel.Clients.ActiveDirectory.dll": {
            "assemblyVersion": "5.2.6.0",
            "fileVersion": "5.2.6.0"
          }
        }
      },
      "Microsoft.IdentityModel.JsonWebTokens/5.6.0": {
        "dependencies": {
          "Microsoft.IdentityModel.Tokens": "5.6.0",
          "Newtonsoft.Json": "12.0.3"
        },
        "runtime": {
          "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll": {
            "assemblyVersion": "5.6.0.0",
            "fileVersion": "5.6.0.61018"
          }
        }
      },
      "Microsoft.IdentityModel.Logging/5.6.0": {
        "runtime": {
          "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll": {
            "assemblyVersion": "5.6.0.0",
            "fileVersion": "5.6.0.61018"
          }
        }
      },
      "Microsoft.IdentityModel.Tokens/5.6.0": {
        "dependencies": {
          "Microsoft.IdentityModel.Logging": "5.6.0",
          "Newtonsoft.Json": "12.0.3",
          "System.Security.Cryptography.Cng": "4.5.0"
        },
        "runtime": {
          "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll": {
            "assemblyVersion": "5.6.0.0",
            "fileVersion": "5.6.0.61018"
          }
        }
      },
      "Microsoft.NETCore.Platforms/5.0.0": {},
      "Microsoft.NETCore.Targets/1.1.3": {},
      "Microsoft.TeamFoundation.DistributedTask.Common.Contracts/16.206.0-preview": {
        "dependencies": {
          "Microsoft.VisualStudio.Services.Client": "16.206.0-preview"
        },
        "runtime": {
          "lib/netstandard2.0/Microsoft.TeamFoundation.DistributedTask.Common.Contracts.dll": {
            "assemblyVersion": "16.0.0.0",
            "fileVersion": "16.206.32708.1"
          }
        }
      },
      "Microsoft.TeamFoundationServer.Client/16.206.0-preview": {
        "dependencies": {
          "Microsoft.AspNet.WebApi.Client": "5.2.7",
          "Microsoft.TeamFoundation.DistributedTask.Common.Contracts": "16.206.0-preview",
          "Microsoft.VisualStudio.Services.Client": "16.206.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.206.32708.1"
          },
          "lib/netstandard2.0/Microsoft.Azure.DevOps.Comments.WebApi.dll": {
            "assemblyVersion": "19.0.0.0",
            "fileVersion": "19.206.32708.1"
          },
          "lib/netstandard2.0/Microsoft.Azure.Pipelines.WebApi.dll": {
            "assemblyVersion": "19.0.0.0",
            "fileVersion": "19.206.32708.1"
          },
          "lib/netstandard2.0/Microsoft.TeamFoundation.Build2.WebApi.dll": {
            "assemblyVersion": "16.0.0.0",
            "fileVersion": "16.206.32708.1"
          },
          "lib/netstandard2.0/Microsoft.TeamFoundation.Core.WebApi.dll": {
            "assemblyVersion": "16.0.0.0",
            "fileVersion": "16.206.32708.1"
          },
          "lib/netstandard2.0/Microsoft.TeamFoundation.Dashboards.WebApi.dll": {
            "assemblyVersion": "16.0.0.0",
            "fileVersion": "16.206.32708.1"
          },
          "lib/netstandard2.0/Microsoft.TeamFoundation.Policy.WebApi.dll": {
            "assemblyVersion": "16.0.0.0",
            "fileVersion": "16.206.32708.1"
          },
          "lib/netstandard2.0/Microsoft.TeamFoundation.SourceControl.WebApi.dll": {
            "assemblyVersion": "16.0.0.0",
            "fileVersion": "16.206.32708.1"
          },
          "lib/netstandard2.0/Microsoft.TeamFoundation.Test.WebApi.dll": {
            "assemblyVersion": "16.0.0.0",
            "fileVersion": "16.206.32708.1"
          },
          "lib/netstandard2.0/Microsoft.TeamFoundation.TestManagement.WebApi.dll": {
            "assemblyVersion": "16.0.0.0",
            "fileVersion": "16.206.32708.1"
          },
          "lib/netstandard2.0/Microsoft.TeamFoundation.Wiki.WebApi.dll": {
            "assemblyVersion": "16.0.0.0",
            "fileVersion": "16.206.32708.1"
          },
          "lib/netstandard2.0/Microsoft.TeamFoundation.Work.WebApi.dll": {
            "assemblyVersion": "16.0.0.0",
            "fileVersion": "16.206.32708.1"
          },
          "lib/netstandard2.0/Microsoft.TeamFoundation.WorkItemTracking.Process.WebApi.dll": {
            "assemblyVersion": "16.0.0.0",
            "fileVersion": "16.206.32708.1"
          },
          "lib/netstandard2.0/Microsoft.TeamFoundation.WorkItemTracking.WebApi.dll": {
            "assemblyVersion": "16.0.0.0",
            "fileVersion": "16.206.32708.1"
          },
          "lib/netstandard2.0/Microsoft.VisualStudio.Services.TestManagement.TestPlanning.WebApi.dll": {
            "assemblyVersion": "16.0.0.0",
            "fileVersion": "16.206.32708.1"
          },
          "lib/netstandard2.0/Microsoft.VisualStudio.Services.TestResults.WebApi.dll": {
            "assemblyVersion": "16.0.0.0",
            "fileVersion": "16.206.32708.1"
          }
        }
      },
      "Microsoft.VisualStudio.Services.Client/16.206.0-preview": {
        "dependencies": {
          "Microsoft.AspNet.WebApi.Client": "5.2.7",
          "Newtonsoft.Json": "12.0.3",
          "System.Configuration.ConfigurationManager": "4.4.1",
          "System.Data.SqlClient": "4.4.2",
          "System.Security.Cryptography.Cng": "4.5.0",
          "System.Security.Cryptography.OpenSsl": "4.4.0",
          "System.Security.Cryptography.ProtectedData": "4.4.0",
          "System.Security.Principal.Windows": "5.0.0",
          "System.Xml.XPath.XmlDocument": "4.3.0"
        },
        "runtime": {
          "lib/netstandard2.0/Microsoft.TeamFoundation.Common.dll": {
            "assemblyVersion": "16.0.0.0",
            "fileVersion": "16.206.32708.1"
          },
          "lib/netstandard2.0/Microsoft.VisualStudio.Services.Common.dll": {
            "assemblyVersion": "16.0.0.0",
            "fileVersion": "16.206.32708.1"
          },
          "lib/netstandard2.0/Microsoft.VisualStudio.Services.WebApi.dll": {
            "assemblyVersion": "16.0.0.0",
            "fileVersion": "16.206.32708.1"
          }
        }
      },
      "Microsoft.VisualStudio.Services.ExtensionManagement.WebApi/16.206.0-preview": {
        "dependencies": {
          "Microsoft.AspNet.WebApi.Client": "5.2.7",
          "Microsoft.VisualStudio.Services.Client": "16.206.0-preview",
          "Microsoft.VisualStudio.Services.Gallery.WebApi": "16.206.0-preview",
          "Newtonsoft.Json": "12.0.3"
        },
        "runtime": {
          "lib/netstandard2.0/Microsoft.VisualStudio.Services.ExtensionManagement.WebApi.dll": {
            "assemblyVersion": "19.0.0.0",
            "fileVersion": "19.206.32708.1"
          }
        }
      },
      "Microsoft.VisualStudio.Services.Gallery.WebApi/16.206.0-preview": {
        "dependencies": {
          "Microsoft.AspNet.WebApi.Client": "5.2.7",
          "Microsoft.VisualStudio.Services.Client": "16.206.0-preview",
          "Newtonsoft.Json": "12.0.3"
        },
        "runtime": {
          "lib/netstandard2.0/Microsoft.VisualStudio.Services.Gallery.WebApi.dll": {
            "assemblyVersion": "19.0.0.0",
            "fileVersion": "19.206.32708.1"
          }
        }
      },
      "Microsoft.VisualStudio.Services.InteractiveClient/16.206.0-preview": {
        "dependencies": {
          "Microsoft.IdentityModel.Clients.ActiveDirectory": "5.2.6",
          "Microsoft.VisualStudio.Services.Client": "16.206.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.206.32708.1"
          }
        }
      },
      "Microsoft.VisualStudio.Services.Packaging.Client/16.206.0-preview": {
        "dependencies": {
          "Microsoft.AspNet.WebApi.Client": "5.2.7",
          "Microsoft.VisualStudio.Services.Client": "16.206.0-preview",
          "Newtonsoft.Json": "12.0.3",
          "System.ComponentModel.Annotations": "4.4.1"
        },
        "runtime": {
          "lib/netstandard2.0/Microsoft.VisualStudio.Services.Feed.WebApi.dll": {
            "assemblyVersion": "19.0.0.0",
            "fileVersion": "19.206.32708.1"
          },
          "lib/netstandard2.0/Microsoft.VisualStudio.Services.Packaging.CrossProtocol.WebApi.dll": {
            "assemblyVersion": "19.0.0.0",
            "fileVersion": "19.206.32708.1"
          },
          "lib/netstandard2.0/Microsoft.VisualStudio.Services.Packaging.Shared.WebApi.dll": {
            "assemblyVersion": "19.0.0.0",
            "fileVersion": "19.206.32708.1"
          },
          "lib/netstandard2.0/Microsoft.VisualStudio.Services.UPack.WebApi.dll": {
            "assemblyVersion": "19.0.0.0",
            "fileVersion": "19.206.32708.1"
          }
        }
      },
      "Microsoft.VisualStudio.Services.Release.Client/16.206.0-preview": {
        "dependencies": {
          "Microsoft.AspNet.WebApi.Client": "5.2.7",
          "Microsoft.TeamFoundation.DistributedTask.Common.Contracts": "16.206.0-preview",
          "Microsoft.VisualStudio.Services.Client": "16.206.0-preview",
          "Newtonsoft.Json": "12.0.3"
        },
        "runtime": {
          "lib/netstandard2.0/Microsoft.VisualStudio.Services.ReleaseManagement.WebApi.dll": {
            "assemblyVersion": "19.0.0.0",
            "fileVersion": "19.206.32708.1"
          }
        }
      },
      "Microsoft.VisualStudio.Services.Search.Client/16.206.0-preview": {
        "dependencies": {
          "Microsoft.AspNet.WebApi.Client": "5.2.7",
          "Microsoft.VisualStudio.Services.Client": "16.206.0-preview",
          "Newtonsoft.Json": "12.0.3"
        },
        "runtime": {
          "lib/netstandard2.0/Microsoft.VisualStudio.Services.Search.Shared.WebApi.dll": {
            "assemblyVersion": "19.0.0.0",
            "fileVersion": "19.206.32708.1"
          },
          "lib/netstandard2.0/Microsoft.VisualStudio.Services.Search.WebApi.dll": {
            "assemblyVersion": "19.0.0.0",
            "fileVersion": "19.206.32708.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.206.0-preview": {
        "dependencies": {
          "Microsoft.AspNet.WebApi.Client": "5.2.7",
          "Microsoft.TeamFoundation.DistributedTask.Common.Contracts": "16.206.0-preview",
          "Microsoft.VisualStudio.Services.Client": "16.206.0-preview",
          "Newtonsoft.Json": "12.0.3"
        },
        "runtime": {
          "lib/netstandard2.0/Microsoft.VisualStudio.Services.ServiceEndpoints.WebApi.dll": {
            "assemblyVersion": "19.0.0.0",
            "fileVersion": "19.206.32708.1"
          }
        }
      },
      "Microsoft.VisualStudio.Services.ServiceHooks.WebApi/16.206.0-preview": {
        "dependencies": {
          "HtmlAgilityPack": "1.6.5",
          "Microsoft.AspNet.WebApi.Client": "5.2.7",
          "Microsoft.VisualStudio.Services.Client": "16.206.0-preview"
        },
        "runtime": {
          "lib/netstandard2.0/Microsoft.VisualStudio.Services.ServiceHooks.WebApi.dll": {
            "assemblyVersion": "19.0.0.0",
            "fileVersion": "19.206.32708.1"
          }
        }
      },
      "Microsoft.Web.WebView2/1.0.864.35": {
        "runtime": {
          "lib/netcoreapp3.0/Microsoft.Web.WebView2.Core.dll": {
            "assemblyVersion": "1.0.864.35",
            "fileVersion": "1.0.864.35"
          },
          "lib/netcoreapp3.0/Microsoft.Web.WebView2.WinForms.dll": {
            "assemblyVersion": "1.0.864.35",
            "fileVersion": "1.0.864.35"
          },
          "lib/netcoreapp3.0/Microsoft.Web.WebView2.Wpf.dll": {
            "assemblyVersion": "1.0.864.35",
            "fileVersion": "1.0.864.35"
          }
        },
        "runtimeTargets": {
          "runtimes/win-arm64/native/WebView2Loader.dll": {
            "rid": "win-arm64",
            "assetType": "native",
            "fileVersion": "1.0.864.35"
          },
          "runtimes/win-x64/native/WebView2Loader.dll": {
            "rid": "win-x64",
            "assetType": "native",
            "fileVersion": "1.0.864.35"
          },
          "runtimes/win-x86/native/WebView2Loader.dll": {
            "rid": "win-x86",
            "assetType": "native",
            "fileVersion": "1.0.864.35"
          }
        }
      },
      "Microsoft.Win32.Primitives/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "5.0.0",
          "Microsoft.NETCore.Targets": "1.1.3",
          "System.Runtime": "4.3.0"
        }
      },
      "Microsoft.Win32.Registry/5.0.0": {
        "dependencies": {
          "System.Security.AccessControl": "5.0.0",
          "System.Security.Principal.Windows": "5.0.0"
        },
        "runtime": {
          "lib/netstandard2.0/Microsoft.Win32.Registry.dll": {
            "assemblyVersion": "5.0.0.0",
            "fileVersion": "5.0.20.51904"
          }
        },
        "runtimeTargets": {
          "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll": {
            "rid": "win",
            "assetType": "runtime",
            "assemblyVersion": "5.0.0.0",
            "fileVersion": "5.0.20.51904"
          }
        }
      },
      "Microsoft.Windows.SDK.Contracts/10.0.17763.1000": {
        "dependencies": {
          "System.Runtime.WindowsRuntime": "4.6.0",
          "System.Runtime.WindowsRuntime.UI.Xaml": "4.6.0"
        }
      },
      "NETStandard.Library/1.6.1": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "5.0.0",
          "Microsoft.Win32.Primitives": "4.3.0",
          "System.AppContext": "4.3.0",
          "System.Collections": "4.3.0",
          "System.Collections.Concurrent": "4.3.0",
          "System.Console": "4.3.0",
          "System.Diagnostics.Debug": "4.3.0",
          "System.Diagnostics.Tools": "4.3.0",
          "System.Diagnostics.Tracing": "4.3.0",
          "System.Globalization": "4.3.0",
          "System.Globalization.Calendars": "4.3.0",
          "System.IO": "4.3.0",
          "System.IO.Compression": "4.3.0",
          "System.IO.Compression.ZipFile": "4.3.0",
          "System.IO.FileSystem": "4.3.0",
          "System.IO.FileSystem.Primitives": "4.3.0",
          "System.Linq": "4.3.0",
          "System.Linq.Expressions": "4.3.0",
          "System.Net.Http": "4.3.4",
          "System.Net.Primitives": "4.3.0",
          "System.Net.Sockets": "4.3.0",
          "System.ObjectModel": "4.3.0",
          "System.Reflection": "4.3.0",
          "System.Reflection.Extensions": "4.3.0",
          "System.Reflection.Primitives": "4.3.0",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Runtime.Extensions": "4.3.0",
          "System.Runtime.Handles": "4.3.0",
          "System.Runtime.InteropServices": "4.3.0",
          "System.Runtime.InteropServices.RuntimeInformation": "4.3.0",
          "System.Runtime.Numerics": "4.3.0",
          "System.Security.Cryptography.Algorithms": "4.3.0",
          "System.Security.Cryptography.Encoding": "4.3.0",
          "System.Security.Cryptography.Primitives": "4.3.0",
          "System.Security.Cryptography.X509Certificates": "4.3.0",
          "System.Text.Encoding": "4.3.0",
          "System.Text.Encoding.Extensions": "4.3.0",
          "System.Text.RegularExpressions": "4.3.0",
          "System.Threading": "4.3.0",
          "System.Threading.Tasks": "4.3.0",
          "System.Threading.Timer": "4.3.0",
          "System.Xml.ReaderWriter": "4.3.0",
          "System.Xml.XDocument": "4.3.0"
        }
      },
      "Newtonsoft.Json/12.0.3": {
        "runtime": {
          "lib/netstandard2.0/Newtonsoft.Json.dll": {
            "assemblyVersion": "12.0.0.0",
            "fileVersion": "12.0.3.23909"
          }
        }
      },
      "Newtonsoft.Json.Bson/1.0.1": {
        "dependencies": {
          "NETStandard.Library": "1.6.1",
          "Newtonsoft.Json": "12.0.3"
        },
        "runtime": {
          "lib/netstandard1.3/Newtonsoft.Json.Bson.dll": {
            "assemblyVersion": "1.0.0.0",
            "fileVersion": "1.0.1.20722"
          }
        }
      },
      "PowerShellStandard.Library/7.0.0-preview.1": {},
      "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {},
      "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {},
      "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {},
      "runtime.native.System/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "5.0.0",
          "Microsoft.NETCore.Targets": "1.1.3"
        }
      },
      "runtime.native.System.Data.SqlClient.sni/4.4.0": {
        "dependencies": {
          "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni": "4.4.0",
          "runtime.win-x64.runtime.native.System.Data.SqlClient.sni": "4.4.0",
          "runtime.win-x86.runtime.native.System.Data.SqlClient.sni": "4.4.0"
        }
      },
      "runtime.native.System.IO.Compression/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "5.0.0",
          "Microsoft.NETCore.Targets": "1.1.3"
        }
      },
      "runtime.native.System.Net.Http/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "5.0.0",
          "Microsoft.NETCore.Targets": "1.1.3"
        }
      },
      "runtime.native.System.Security.Cryptography.Apple/4.3.0": {
        "dependencies": {
          "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.0"
        }
      },
      "runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
        "dependencies": {
          "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
          "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
          "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
          "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
          "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
          "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
          "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
          "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
          "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2",
          "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2"
        }
      },
      "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {},
      "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {},
      "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {},
      "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {},
      "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {},
      "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {},
      "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {},
      "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {},
      "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0": {
        "runtimeTargets": {
          "runtimes/win-arm64/native/sni.dll": {
            "rid": "win-arm64",
            "assetType": "native",
            "fileVersion": "4.6.25512.1"
          }
        }
      },
      "runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0": {
        "runtimeTargets": {
          "runtimes/win-x64/native/sni.dll": {
            "rid": "win-x64",
            "assetType": "native",
            "fileVersion": "4.6.25512.1"
          }
        }
      },
      "runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0": {
        "runtimeTargets": {
          "runtimes/win-x86/native/sni.dll": {
            "rid": "win-x86",
            "assetType": "native",
            "fileVersion": "4.6.25512.1"
          }
        }
      },
      "System.AppContext/4.3.0": {
        "dependencies": {
          "System.Runtime": "4.3.0"
        }
      },
      "System.Buffers/4.3.0": {
        "dependencies": {
          "System.Diagnostics.Debug": "4.3.0",
          "System.Diagnostics.Tracing": "4.3.0",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Threading": "4.3.0"
        }
      },
      "System.Collections/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "5.0.0",
          "Microsoft.NETCore.Targets": "1.1.3",
          "System.Runtime": "4.3.0"
        }
      },
      "System.Collections.Concurrent/4.3.0": {
        "dependencies": {
          "System.Collections": "4.3.0",
          "System.Diagnostics.Debug": "4.3.0",
          "System.Diagnostics.Tracing": "4.3.0",
          "System.Globalization": "4.3.0",
          "System.Reflection": "4.3.0",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Runtime.Extensions": "4.3.0",
          "System.Threading": "4.3.0",
          "System.Threading.Tasks": "4.3.0"
        }
      },
      "System.Collections.NonGeneric/4.3.0": {
        "dependencies": {
          "System.Diagnostics.Debug": "4.3.0",
          "System.Globalization": "4.3.0",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Runtime.Extensions": "4.3.0",
          "System.Threading": "4.3.0"
        }
      },
      "System.Collections.Specialized/4.3.0": {
        "dependencies": {
          "System.Collections.NonGeneric": "4.3.0",
          "System.Globalization": "4.3.0",
          "System.Globalization.Extensions": "4.3.0",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Runtime.Extensions": "4.3.0",
          "System.Threading": "4.3.0"
        }
      },
      "System.ComponentModel/4.3.0": {
        "dependencies": {
          "System.Runtime": "4.3.0"
        }
      },
      "System.ComponentModel.Annotations/4.4.1": {},
      "System.ComponentModel.Primitives/4.3.0": {
        "dependencies": {
          "System.ComponentModel": "4.3.0",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0"
        }
      },
      "System.ComponentModel.TypeConverter/4.3.0": {
        "dependencies": {
          "System.Collections": "4.3.0",
          "System.Collections.NonGeneric": "4.3.0",
          "System.Collections.Specialized": "4.3.0",
          "System.ComponentModel": "4.3.0",
          "System.ComponentModel.Primitives": "4.3.0",
          "System.Globalization": "4.3.0",
          "System.Linq": "4.3.0",
          "System.Reflection": "4.3.0",
          "System.Reflection.Extensions": "4.3.0",
          "System.Reflection.Primitives": "4.3.0",
          "System.Reflection.TypeExtensions": "4.3.0",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Runtime.Extensions": "4.3.0",
          "System.Threading": "4.3.0"
        }
      },
      "System.Composition/6.0.0": {
        "dependencies": {
          "System.Composition.AttributedModel": "6.0.0",
          "System.Composition.Convention": "6.0.0",
          "System.Composition.Hosting": "6.0.0",
          "System.Composition.Runtime": "6.0.0",
          "System.Composition.TypedParts": "6.0.0"
        }
      },
      "System.Composition.AttributedModel/6.0.0": {
        "runtime": {
          "lib/netstandard2.0/System.Composition.AttributedModel.dll": {
            "assemblyVersion": "6.0.0.0",
            "fileVersion": "6.0.21.52210"
          }
        }
      },
      "System.Composition.Convention/6.0.0": {
        "dependencies": {
          "System.Composition.AttributedModel": "6.0.0"
        },
        "runtime": {
          "lib/netstandard2.0/System.Composition.Convention.dll": {
            "assemblyVersion": "6.0.0.0",
            "fileVersion": "6.0.21.52210"
          }
        }
      },
      "System.Composition.Hosting/6.0.0": {
        "dependencies": {
          "System.Composition.Runtime": "6.0.0"
        },
        "runtime": {
          "lib/netstandard2.0/System.Composition.Hosting.dll": {
            "assemblyVersion": "6.0.0.0",
            "fileVersion": "6.0.21.52210"
          }
        }
      },
      "System.Composition.Runtime/6.0.0": {
        "runtime": {
          "lib/netstandard2.0/System.Composition.Runtime.dll": {
            "assemblyVersion": "6.0.0.0",
            "fileVersion": "6.0.21.52210"
          }
        }
      },
      "System.Composition.TypedParts/6.0.0": {
        "dependencies": {
          "System.Composition.AttributedModel": "6.0.0",
          "System.Composition.Hosting": "6.0.0",
          "System.Composition.Runtime": "6.0.0"
        },
        "runtime": {
          "lib/netstandard2.0/System.Composition.TypedParts.dll": {
            "assemblyVersion": "6.0.0.0",
            "fileVersion": "6.0.21.52210"
          }
        }
      },
      "System.Configuration.ConfigurationManager/4.4.1": {
        "dependencies": {
          "System.Security.Cryptography.ProtectedData": "4.4.0"
        }
      },
      "System.Console/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "5.0.0",
          "Microsoft.NETCore.Targets": "1.1.3",
          "System.IO": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Text.Encoding": "4.3.0"
        }
      },
      "System.Data.SqlClient/4.4.2": {
        "dependencies": {
          "Microsoft.Win32.Registry": "5.0.0",
          "System.Security.Principal.Windows": "5.0.0",
          "System.Text.Encoding.CodePages": "4.4.0",
          "runtime.native.System.Data.SqlClient.sni": "4.4.0"
        },
        "runtime": {
          "lib/netstandard2.0/System.Data.SqlClient.dll": {
            "assemblyVersion": "4.2.0.1",
            "fileVersion": "4.6.25921.2"
          }
        },
        "runtimeTargets": {
          "runtimes/unix/lib/netstandard2.0/System.Data.SqlClient.dll": {
            "rid": "unix",
            "assetType": "runtime",
            "assemblyVersion": "4.2.0.1",
            "fileVersion": "4.6.25921.2"
          },
          "runtimes/win/lib/netstandard2.0/System.Data.SqlClient.dll": {
            "rid": "win",
            "assetType": "runtime",
            "assemblyVersion": "4.2.0.1",
            "fileVersion": "4.6.25921.2"
          }
        }
      },
      "System.Diagnostics.Debug/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "5.0.0",
          "Microsoft.NETCore.Targets": "1.1.3",
          "System.Runtime": "4.3.0"
        }
      },
      "System.Diagnostics.DiagnosticSource/4.3.0": {
        "dependencies": {
          "System.Collections": "4.3.0",
          "System.Diagnostics.Tracing": "4.3.0",
          "System.Reflection": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Threading": "4.3.0"
        }
      },
      "System.Diagnostics.Tools/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "5.0.0",
          "Microsoft.NETCore.Targets": "1.1.3",
          "System.Runtime": "4.3.0"
        }
      },
      "System.Diagnostics.Tracing/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "5.0.0",
          "Microsoft.NETCore.Targets": "1.1.3",
          "System.Runtime": "4.3.0"
        }
      },
      "System.Dynamic.Runtime/4.3.0": {
        "dependencies": {
          "System.Collections": "4.3.0",
          "System.Diagnostics.Debug": "4.3.0",
          "System.Linq": "4.3.0",
          "System.Linq.Expressions": "4.3.0",
          "System.ObjectModel": "4.3.0",
          "System.Reflection": "4.3.0",
          "System.Reflection.Emit": "4.3.0",
          "System.Reflection.Emit.ILGeneration": "4.3.0",
          "System.Reflection.Primitives": "4.3.0",
          "System.Reflection.TypeExtensions": "4.3.0",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Runtime.Extensions": "4.3.0",
          "System.Threading": "4.3.0"
        }
      },
      "System.Globalization/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "5.0.0",
          "Microsoft.NETCore.Targets": "1.1.3",
          "System.Runtime": "4.3.0"
        }
      },
      "System.Globalization.Calendars/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "5.0.0",
          "Microsoft.NETCore.Targets": "1.1.3",
          "System.Globalization": "4.3.0",
          "System.Runtime": "4.3.0"
        }
      },
      "System.Globalization.Extensions/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "5.0.0",
          "System.Globalization": "4.3.0",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Runtime.Extensions": "4.3.0",
          "System.Runtime.InteropServices": "4.3.0"
        }
      },
      "System.IdentityModel.Tokens.Jwt/5.6.0": {
        "dependencies": {
          "Microsoft.IdentityModel.JsonWebTokens": "5.6.0",
          "Microsoft.IdentityModel.Tokens": "5.6.0",
          "Newtonsoft.Json": "12.0.3"
        },
        "runtime": {
          "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll": {
            "assemblyVersion": "5.6.0.0",
            "fileVersion": "5.6.0.61018"
          }
        }
      },
      "System.IO/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "5.0.0",
          "Microsoft.NETCore.Targets": "1.1.3",
          "System.Runtime": "4.3.0",
          "System.Text.Encoding": "4.3.0",
          "System.Threading.Tasks": "4.3.0"
        }
      },
      "System.IO.Compression/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "5.0.0",
          "System.Buffers": "4.3.0",
          "System.Collections": "4.3.0",
          "System.Diagnostics.Debug": "4.3.0",
          "System.IO": "4.3.0",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Runtime.Extensions": "4.3.0",
          "System.Runtime.Handles": "4.3.0",
          "System.Runtime.InteropServices": "4.3.0",
          "System.Text.Encoding": "4.3.0",
          "System.Threading": "4.3.0",
          "System.Threading.Tasks": "4.3.0",
          "runtime.native.System": "4.3.0",
          "runtime.native.System.IO.Compression": "4.3.0"
        }
      },
      "System.IO.Compression.ZipFile/4.3.0": {
        "dependencies": {
          "System.Buffers": "4.3.0",
          "System.IO": "4.3.0",
          "System.IO.Compression": "4.3.0",
          "System.IO.FileSystem": "4.3.0",
          "System.IO.FileSystem.Primitives": "4.3.0",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Runtime.Extensions": "4.3.0",
          "System.Text.Encoding": "4.3.0"
        }
      },
      "System.IO.FileSystem/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "5.0.0",
          "Microsoft.NETCore.Targets": "1.1.3",
          "System.IO": "4.3.0",
          "System.IO.FileSystem.Primitives": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Runtime.Handles": "4.3.0",
          "System.Text.Encoding": "4.3.0",
          "System.Threading.Tasks": "4.3.0"
        }
      },
      "System.IO.FileSystem.Primitives/4.3.0": {
        "dependencies": {
          "System.Runtime": "4.3.0"
        }
      },
      "System.Linq/4.3.0": {
        "dependencies": {
          "System.Collections": "4.3.0",
          "System.Diagnostics.Debug": "4.3.0",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Runtime.Extensions": "4.3.0"
        }
      },
      "System.Linq.Expressions/4.3.0": {
        "dependencies": {
          "System.Collections": "4.3.0",
          "System.Diagnostics.Debug": "4.3.0",
          "System.Globalization": "4.3.0",
          "System.IO": "4.3.0",
          "System.Linq": "4.3.0",
          "System.ObjectModel": "4.3.0",
          "System.Reflection": "4.3.0",
          "System.Reflection.Emit": "4.3.0",
          "System.Reflection.Emit.ILGeneration": "4.3.0",
          "System.Reflection.Emit.Lightweight": "4.3.0",
          "System.Reflection.Extensions": "4.3.0",
          "System.Reflection.Primitives": "4.3.0",
          "System.Reflection.TypeExtensions": "4.3.0",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Runtime.Extensions": "4.3.0",
          "System.Threading": "4.3.0"
        }
      },
      "System.Net.Http/4.3.4": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "5.0.0",
          "System.Collections": "4.3.0",
          "System.Diagnostics.Debug": "4.3.0",
          "System.Diagnostics.DiagnosticSource": "4.3.0",
          "System.Diagnostics.Tracing": "4.3.0",
          "System.Globalization": "4.3.0",
          "System.Globalization.Extensions": "4.3.0",
          "System.IO": "4.3.0",
          "System.IO.FileSystem": "4.3.0",
          "System.Net.Primitives": "4.3.0",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Runtime.Extensions": "4.3.0",
          "System.Runtime.Handles": "4.3.0",
          "System.Runtime.InteropServices": "4.3.0",
          "System.Security.Cryptography.Algorithms": "4.3.0",
          "System.Security.Cryptography.Encoding": "4.3.0",
          "System.Security.Cryptography.OpenSsl": "4.4.0",
          "System.Security.Cryptography.Primitives": "4.3.0",
          "System.Security.Cryptography.X509Certificates": "4.3.0",
          "System.Text.Encoding": "4.3.0",
          "System.Threading": "4.3.0",
          "System.Threading.Tasks": "4.3.0",
          "runtime.native.System": "4.3.0",
          "runtime.native.System.Net.Http": "4.3.0",
          "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2"
        }
      },
      "System.Net.Primitives/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "5.0.0",
          "Microsoft.NETCore.Targets": "1.1.3",
          "System.Runtime": "4.3.0",
          "System.Runtime.Handles": "4.3.0"
        }
      },
      "System.Net.Sockets/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "5.0.0",
          "Microsoft.NETCore.Targets": "1.1.3",
          "System.IO": "4.3.0",
          "System.Net.Primitives": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Threading.Tasks": "4.3.0"
        }
      },
      "System.ObjectModel/4.3.0": {
        "dependencies": {
          "System.Collections": "4.3.0",
          "System.Diagnostics.Debug": "4.3.0",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Threading": "4.3.0"
        }
      },
      "System.Private.DataContractSerialization/4.3.0": {
        "dependencies": {
          "System.Collections": "4.3.0",
          "System.Collections.Concurrent": "4.3.0",
          "System.Diagnostics.Debug": "4.3.0",
          "System.Globalization": "4.3.0",
          "System.IO": "4.3.0",
          "System.Linq": "4.3.0",
          "System.Reflection": "4.3.0",
          "System.Reflection.Emit.ILGeneration": "4.3.0",
          "System.Reflection.Emit.Lightweight": "4.3.0",
          "System.Reflection.Extensions": "4.3.0",
          "System.Reflection.Primitives": "4.3.0",
          "System.Reflection.TypeExtensions": "4.3.0",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Runtime.Extensions": "4.3.0",
          "System.Runtime.Serialization.Primitives": "4.3.0",
          "System.Text.Encoding": "4.3.0",
          "System.Text.Encoding.Extensions": "4.3.0",
          "System.Text.RegularExpressions": "4.3.0",
          "System.Threading": "4.3.0",
          "System.Threading.Tasks": "4.3.0",
          "System.Xml.ReaderWriter": "4.3.0",
          "System.Xml.XDocument": "4.3.0",
          "System.Xml.XmlDocument": "4.3.0",
          "System.Xml.XmlSerializer": "4.3.0"
        }
      },
      "System.Private.Uri/4.3.2": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "5.0.0",
          "Microsoft.NETCore.Targets": "1.1.3"
        }
      },
      "System.Reflection/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "5.0.0",
          "Microsoft.NETCore.Targets": "1.1.3",
          "System.IO": "4.3.0",
          "System.Reflection.Primitives": "4.3.0",
          "System.Runtime": "4.3.0"
        }
      },
      "System.Reflection.Emit/4.3.0": {
        "dependencies": {
          "System.IO": "4.3.0",
          "System.Reflection": "4.3.0",
          "System.Reflection.Emit.ILGeneration": "4.3.0",
          "System.Reflection.Primitives": "4.3.0",
          "System.Runtime": "4.3.0"
        }
      },
      "System.Reflection.Emit.ILGeneration/4.3.0": {
        "dependencies": {
          "System.Reflection": "4.3.0",
          "System.Reflection.Primitives": "4.3.0",
          "System.Runtime": "4.3.0"
        }
      },
      "System.Reflection.Emit.Lightweight/4.3.0": {
        "dependencies": {
          "System.Reflection": "4.3.0",
          "System.Reflection.Emit.ILGeneration": "4.3.0",
          "System.Reflection.Primitives": "4.3.0",
          "System.Runtime": "4.3.0"
        }
      },
      "System.Reflection.Extensions/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "5.0.0",
          "Microsoft.NETCore.Targets": "1.1.3",
          "System.Reflection": "4.3.0",
          "System.Runtime": "4.3.0"
        }
      },
      "System.Reflection.Primitives/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "5.0.0",
          "Microsoft.NETCore.Targets": "1.1.3",
          "System.Runtime": "4.3.0"
        }
      },
      "System.Reflection.TypeExtensions/4.3.0": {
        "dependencies": {
          "System.Reflection": "4.3.0",
          "System.Runtime": "4.3.0"
        }
      },
      "System.Resources.ResourceManager/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "5.0.0",
          "Microsoft.NETCore.Targets": "1.1.3",
          "System.Globalization": "4.3.0",
          "System.Reflection": "4.3.0",
          "System.Runtime": "4.3.0"
        }
      },
      "System.Runtime/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "5.0.0",
          "Microsoft.NETCore.Targets": "1.1.3"
        }
      },
      "System.Runtime.Extensions/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "5.0.0",
          "Microsoft.NETCore.Targets": "1.1.3",
          "System.Runtime": "4.3.0"
        }
      },
      "System.Runtime.Handles/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "5.0.0",
          "Microsoft.NETCore.Targets": "1.1.3",
          "System.Runtime": "4.3.0"
        }
      },
      "System.Runtime.InteropServices/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "5.0.0",
          "Microsoft.NETCore.Targets": "1.1.3",
          "System.Reflection": "4.3.0",
          "System.Reflection.Primitives": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Runtime.Handles": "4.3.0"
        }
      },
      "System.Runtime.InteropServices.RuntimeInformation/4.3.0": {
        "dependencies": {
          "System.Reflection": "4.3.0",
          "System.Reflection.Extensions": "4.3.0",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Runtime.InteropServices": "4.3.0",
          "System.Threading": "4.3.0",
          "runtime.native.System": "4.3.0"
        }
      },
      "System.Runtime.Numerics/4.3.0": {
        "dependencies": {
          "System.Globalization": "4.3.0",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Runtime.Extensions": "4.3.0"
        }
      },
      "System.Runtime.Serialization.Formatters/4.3.0": {
        "dependencies": {
          "System.Collections": "4.3.0",
          "System.Reflection": "4.3.0",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Runtime.Serialization.Primitives": "4.3.0"
        }
      },
      "System.Runtime.Serialization.Json/4.3.0": {
        "dependencies": {
          "System.IO": "4.3.0",
          "System.Private.DataContractSerialization": "4.3.0",
          "System.Runtime": "4.3.0"
        }
      },
      "System.Runtime.Serialization.Primitives/4.3.0": {
        "dependencies": {
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0"
        }
      },
      "System.Runtime.WindowsRuntime/4.6.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "5.0.0"
        }
      },
      "System.Runtime.WindowsRuntime.UI.Xaml/4.6.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "5.0.0",
          "System.Runtime.WindowsRuntime": "4.6.0"
        }
      },
      "System.Security.AccessControl/5.0.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "5.0.0",
          "System.Security.Principal.Windows": "5.0.0"
        },
        "runtime": {
          "lib/netstandard2.0/System.Security.AccessControl.dll": {
            "assemblyVersion": "5.0.0.0",
            "fileVersion": "5.0.20.51904"
          }
        },
        "runtimeTargets": {
          "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll": {
            "rid": "win",
            "assetType": "runtime",
            "assemblyVersion": "5.0.0.0",
            "fileVersion": "5.0.20.51904"
          }
        }
      },
      "System.Security.Cryptography.Algorithms/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "5.0.0",
          "System.Collections": "4.3.0",
          "System.IO": "4.3.0",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Runtime.Extensions": "4.3.0",
          "System.Runtime.Handles": "4.3.0",
          "System.Runtime.InteropServices": "4.3.0",
          "System.Runtime.Numerics": "4.3.0",
          "System.Security.Cryptography.Encoding": "4.3.0",
          "System.Security.Cryptography.Primitives": "4.3.0",
          "System.Text.Encoding": "4.3.0",
          "runtime.native.System.Security.Cryptography.Apple": "4.3.0",
          "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2"
        }
      },
      "System.Security.Cryptography.Cng/4.5.0": {},
      "System.Security.Cryptography.Csp/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "5.0.0",
          "System.IO": "4.3.0",
          "System.Reflection": "4.3.0",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Runtime.Extensions": "4.3.0",
          "System.Runtime.Handles": "4.3.0",
          "System.Runtime.InteropServices": "4.3.0",
          "System.Security.Cryptography.Algorithms": "4.3.0",
          "System.Security.Cryptography.Encoding": "4.3.0",
          "System.Security.Cryptography.Primitives": "4.3.0",
          "System.Text.Encoding": "4.3.0",
          "System.Threading": "4.3.0"
        }
      },
      "System.Security.Cryptography.Encoding/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "5.0.0",
          "System.Collections": "4.3.0",
          "System.Collections.Concurrent": "4.3.0",
          "System.Linq": "4.3.0",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Runtime.Extensions": "4.3.0",
          "System.Runtime.Handles": "4.3.0",
          "System.Runtime.InteropServices": "4.3.0",
          "System.Security.Cryptography.Primitives": "4.3.0",
          "System.Text.Encoding": "4.3.0",
          "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2"
        }
      },
      "System.Security.Cryptography.OpenSsl/4.4.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "5.0.0"
        }
      },
      "System.Security.Cryptography.Primitives/4.3.0": {
        "dependencies": {
          "System.Diagnostics.Debug": "4.3.0",
          "System.Globalization": "4.3.0",
          "System.IO": "4.3.0",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Threading": "4.3.0",
          "System.Threading.Tasks": "4.3.0"
        }
      },
      "System.Security.Cryptography.ProtectedData/4.4.0": {},
      "System.Security.Cryptography.X509Certificates/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "5.0.0",
          "System.Collections": "4.3.0",
          "System.Diagnostics.Debug": "4.3.0",
          "System.Globalization": "4.3.0",
          "System.Globalization.Calendars": "4.3.0",
          "System.IO": "4.3.0",
          "System.IO.FileSystem": "4.3.0",
          "System.IO.FileSystem.Primitives": "4.3.0",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Runtime.Extensions": "4.3.0",
          "System.Runtime.Handles": "4.3.0",
          "System.Runtime.InteropServices": "4.3.0",
          "System.Runtime.Numerics": "4.3.0",
          "System.Security.Cryptography.Algorithms": "4.3.0",
          "System.Security.Cryptography.Cng": "4.5.0",
          "System.Security.Cryptography.Csp": "4.3.0",
          "System.Security.Cryptography.Encoding": "4.3.0",
          "System.Security.Cryptography.OpenSsl": "4.4.0",
          "System.Security.Cryptography.Primitives": "4.3.0",
          "System.Text.Encoding": "4.3.0",
          "System.Threading": "4.3.0",
          "runtime.native.System": "4.3.0",
          "runtime.native.System.Net.Http": "4.3.0",
          "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2"
        }
      },
      "System.Security.Principal.Windows/5.0.0": {
        "runtime": {
          "lib/netstandard2.0/System.Security.Principal.Windows.dll": {
            "assemblyVersion": "5.0.0.0",
            "fileVersion": "5.0.20.51904"
          }
        },
        "runtimeTargets": {
          "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": {
            "rid": "unix",
            "assetType": "runtime",
            "assemblyVersion": "5.0.0.0",
            "fileVersion": "5.0.20.51904"
          },
          "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": {
            "rid": "win",
            "assetType": "runtime",
            "assemblyVersion": "5.0.0.0",
            "fileVersion": "5.0.20.51904"
          }
        }
      },
      "System.Security.SecureString/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "5.0.0",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Runtime.Handles": "4.3.0",
          "System.Runtime.InteropServices": "4.3.0",
          "System.Security.Cryptography.Primitives": "4.3.0",
          "System.Text.Encoding": "4.3.0",
          "System.Threading": "4.3.0"
        }
      },
      "System.Text.Encoding/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "5.0.0",
          "Microsoft.NETCore.Targets": "1.1.3",
          "System.Runtime": "4.3.0"
        }
      },
      "System.Text.Encoding.CodePages/4.4.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "5.0.0"
        }
      },
      "System.Text.Encoding.Extensions/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "5.0.0",
          "Microsoft.NETCore.Targets": "1.1.3",
          "System.Runtime": "4.3.0",
          "System.Text.Encoding": "4.3.0"
        }
      },
      "System.Text.RegularExpressions/4.3.0": {
        "dependencies": {
          "System.Runtime": "4.3.0"
        }
      },
      "System.Threading/4.3.0": {
        "dependencies": {
          "System.Runtime": "4.3.0",
          "System.Threading.Tasks": "4.3.0"
        }
      },
      "System.Threading.Tasks/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "5.0.0",
          "Microsoft.NETCore.Targets": "1.1.3",
          "System.Runtime": "4.3.0"
        }
      },
      "System.Threading.Tasks.Extensions/4.3.0": {
        "dependencies": {
          "System.Collections": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Threading.Tasks": "4.3.0"
        }
      },
      "System.Threading.Timer/4.3.0": {
        "dependencies": {
          "Microsoft.NETCore.Platforms": "5.0.0",
          "Microsoft.NETCore.Targets": "1.1.3",
          "System.Runtime": "4.3.0"
        }
      },
      "System.Xml.ReaderWriter/4.3.0": {
        "dependencies": {
          "System.Collections": "4.3.0",
          "System.Diagnostics.Debug": "4.3.0",
          "System.Globalization": "4.3.0",
          "System.IO": "4.3.0",
          "System.IO.FileSystem": "4.3.0",
          "System.IO.FileSystem.Primitives": "4.3.0",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Runtime.Extensions": "4.3.0",
          "System.Runtime.InteropServices": "4.3.0",
          "System.Text.Encoding": "4.3.0",
          "System.Text.Encoding.Extensions": "4.3.0",
          "System.Text.RegularExpressions": "4.3.0",
          "System.Threading.Tasks": "4.3.0",
          "System.Threading.Tasks.Extensions": "4.3.0"
        }
      },
      "System.Xml.XDocument/4.3.0": {
        "dependencies": {
          "System.Collections": "4.3.0",
          "System.Diagnostics.Debug": "4.3.0",
          "System.Diagnostics.Tools": "4.3.0",
          "System.Globalization": "4.3.0",
          "System.IO": "4.3.0",
          "System.Reflection": "4.3.0",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Runtime.Extensions": "4.3.0",
          "System.Text.Encoding": "4.3.0",
          "System.Threading": "4.3.0",
          "System.Xml.ReaderWriter": "4.3.0"
        }
      },
      "System.Xml.XmlDocument/4.3.0": {
        "dependencies": {
          "System.Collections": "4.3.0",
          "System.Diagnostics.Debug": "4.3.0",
          "System.Globalization": "4.3.0",
          "System.IO": "4.3.0",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Runtime.Extensions": "4.3.0",
          "System.Text.Encoding": "4.3.0",
          "System.Threading": "4.3.0",
          "System.Xml.ReaderWriter": "4.3.0"
        }
      },
      "System.Xml.XmlSerializer/4.3.0": {
        "dependencies": {
          "System.Collections": "4.3.0",
          "System.Globalization": "4.3.0",
          "System.IO": "4.3.0",
          "System.Linq": "4.3.0",
          "System.Reflection": "4.3.0",
          "System.Reflection.Emit": "4.3.0",
          "System.Reflection.Emit.ILGeneration": "4.3.0",
          "System.Reflection.Extensions": "4.3.0",
          "System.Reflection.Primitives": "4.3.0",
          "System.Reflection.TypeExtensions": "4.3.0",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Runtime.Extensions": "4.3.0",
          "System.Text.RegularExpressions": "4.3.0",
          "System.Threading": "4.3.0",
          "System.Xml.ReaderWriter": "4.3.0",
          "System.Xml.XmlDocument": "4.3.0"
        }
      },
      "System.Xml.XPath/4.3.0": {
        "dependencies": {
          "System.Collections": "4.3.0",
          "System.Diagnostics.Debug": "4.3.0",
          "System.Globalization": "4.3.0",
          "System.IO": "4.3.0",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Runtime.Extensions": "4.3.0",
          "System.Threading": "4.3.0",
          "System.Xml.ReaderWriter": "4.3.0"
        }
      },
      "System.Xml.XPath.XmlDocument/4.3.0": {
        "dependencies": {
          "System.Collections": "4.3.0",
          "System.Globalization": "4.3.0",
          "System.IO": "4.3.0",
          "System.Resources.ResourceManager": "4.3.0",
          "System.Runtime": "4.3.0",
          "System.Runtime.Extensions": "4.3.0",
          "System.Threading": "4.3.0",
          "System.Xml.ReaderWriter": "4.3.0",
          "System.Xml.XPath": "4.3.0",
          "System.Xml.XmlDocument": "4.3.0"
        },
        "runtime": {
          "lib/netstandard1.3/System.Xml.XPath.XmlDocument.dll": {
            "assemblyVersion": "4.0.2.0",
            "fileVersion": "4.6.24705.1"
          }
        }
      },
      "TfsCmdlets.Common/2.6.0.2898": {
        "dependencies": {
          "Microsoft.Identity.Client": "4.47.1",
          "Microsoft.Identity.Client.Desktop": "4.47.1",
          "Microsoft.TeamFoundationServer.Client": "16.206.0-preview",
          "Microsoft.VisualStudio.Services.InteractiveClient": "16.206.0-preview",
          "Microsoft.VisualStudio.Services.Packaging.Client": "16.206.0-preview",
          "Microsoft.VisualStudio.Services.Release.Client": "16.206.0-preview",
          "Microsoft.VisualStudio.Services.Search.Client": "16.206.0-preview",
          "Microsoft.VisualStudio.Services.ServiceEndpoints.WebApi": "16.206.0-preview",
          "Microsoft.VisualStudio.Services.ServiceHooks.WebApi": "16.206.0-preview",
          "Microsoft.Win32.Registry": "5.0.0",
          "System.Composition": "6.0.0",
          "System.Composition.Hosting": "6.0.0",
          "System.IO.Compression.ZipFile": "4.3.0"
        },
        "runtime": {
          "TfsCmdlets.Common.dll": {}
        }
      }
    }
  },
  "libraries": {
    "TfsCmdlets/2.6.0.2898": {
      "type": "project",
      "serviceable": false,
      "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.Identity.Client/4.47.1": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-Z0cqLUSSCcbhmNmgEvlsC12dK7m/BIvKXxGMVnITfeivFzkQsBH61+SXErWvb2A8E7nsI4VIVv6FPxGoZf4E1w==",
      "path": "microsoft.identity.client/4.47.1",
      "hashPath": "microsoft.identity.client.4.47.1.nupkg.sha512"
    },
    "Microsoft.Identity.Client.Desktop/4.47.1": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-oSeX9CeRNfCCIrCn02quCtJ4x4DMSTBVz1bCOjLJlADW/Vn7gScaJTrnQsvm+zDuN9ywB2WSTVWi1pg/r0b67g==",
      "path": "microsoft.identity.client.desktop/4.47.1",
      "hashPath": "microsoft.identity.client.desktop.4.47.1.nupkg.sha512"
    },
    "Microsoft.IdentityModel.Abstractions/6.22.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-iI+9V+2ciCrbheeLjpmjcqCnhy+r6yCoEcid3nkoFWerHgjVuT6CPM4HODUTtUPe1uwks4wcnAujJ8u+IKogHQ==",
      "path": "microsoft.identitymodel.abstractions/6.22.0",
      "hashPath": "microsoft.identitymodel.abstractions.6.22.0.nupkg.sha512"
    },
    "Microsoft.IdentityModel.Clients.ActiveDirectory/5.2.6": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-Z+RMsrkkaEYR+obg9G8Nr2C9HZZAcmzCMqvBAmY94DhCJCW5KxAHyTZjlYBM6fx5tC7blFtYRDogvb0EtTwJMQ==",
      "path": "microsoft.identitymodel.clients.activedirectory/5.2.6",
      "hashPath": "microsoft.identitymodel.clients.activedirectory.5.2.6.nupkg.sha512"
    },
    "Microsoft.IdentityModel.JsonWebTokens/5.6.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-0q0U1W+gX1jmfmv7uU7GXFGB518atmSwucxsVwPGpuaGS3jwd2tUi+Gau+ezxR6oAFEBFKG9lz/fxRZzGMeDXg==",
      "path": "microsoft.identitymodel.jsonwebtokens/5.6.0",
      "hashPath": "microsoft.identitymodel.jsonwebtokens.5.6.0.nupkg.sha512"
    },
    "Microsoft.IdentityModel.Logging/5.6.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-zEDrfEVW5x5w2hbTV94WwAcWvtue5hNTXYqoPh3ypF6U8csm09JazEYy+VPp2RtczkyMfcsvWY9Fea17e+isYQ==",
      "path": "microsoft.identitymodel.logging/5.6.0",
      "hashPath": "microsoft.identitymodel.logging.5.6.0.nupkg.sha512"
    },
    "Microsoft.IdentityModel.Tokens/5.6.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-C3OqR3QfBQ7wcC7yAsdMQqay87OsV6yWPYG/Ai3n7dvmWIGkouQhXoVxRP0xz3cAFL4hxZBXyw4aLTC421PaMg==",
      "path": "microsoft.identitymodel.tokens/5.6.0",
      "hashPath": "microsoft.identitymodel.tokens.5.6.0.nupkg.sha512"
    },
    "Microsoft.NETCore.Platforms/5.0.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-VyPlqzH2wavqquTcYpkIIAQ6WdenuKoFN0BdYBbCWsclXacSOHNQn66Gt4z5NBqEYW0FAPm5rlvki9ZiCij5xQ==",
      "path": "microsoft.netcore.platforms/5.0.0",
      "hashPath": "microsoft.netcore.platforms.5.0.0.nupkg.sha512"
    },
    "Microsoft.NETCore.Targets/1.1.3": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-3Wrmi0kJDzClwAC+iBdUBpEKmEle8FQNsCs77fkiOIw/9oYA07bL1EZNX0kQ2OMN3xpwvl0vAtOCYY3ndDNlhQ==",
      "path": "microsoft.netcore.targets/1.1.3",
      "hashPath": "microsoft.netcore.targets.1.1.3.nupkg.sha512"
    },
    "Microsoft.TeamFoundation.DistributedTask.Common.Contracts/16.206.0-preview": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-9hL9UgNBhECUXrnEd88hytIe8DiPC1fl9T0iKvucL7OMjNiNdaqAcR5gDP5ryKtZB4GcLG94SQ3w5z6xAwnn2w==",
      "path": "microsoft.teamfoundation.distributedtask.common.contracts/16.206.0-preview",
      "hashPath": "microsoft.teamfoundation.distributedtask.common.contracts.16.206.0-preview.nupkg.sha512"
    },
    "Microsoft.TeamFoundationServer.Client/16.206.0-preview": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-MWbcjR+AZaINNaN7xzTK5fFMvh0MlshK4dJ8U4rFRf0WiUqrDnnjCCr0xAiS2OXWnfL9n5CenjKb3zylTQ8Dtg==",
      "path": "microsoft.teamfoundationserver.client/16.206.0-preview",
      "hashPath": "microsoft.teamfoundationserver.client.16.206.0-preview.nupkg.sha512"
    },
    "Microsoft.VisualStudio.Services.Client/16.206.0-preview": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-wAlJYGJGOKSSvKKawtULC2UUAvM0Q+WZvXZnaRHWbT5XVAhM0vXPQuyxNsC7FvmIe7GQuhoi9+AQBmCyrtHH9w==",
      "path": "microsoft.visualstudio.services.client/16.206.0-preview",
      "hashPath": "microsoft.visualstudio.services.client.16.206.0-preview.nupkg.sha512"
    },
    "Microsoft.VisualStudio.Services.ExtensionManagement.WebApi/16.206.0-preview": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-IEqllqt7w2iYkgffoGoD0EBJkSOMFEbTGZl7nR3o+cj6n1swOdrevA5UCXZb8FxzbozZlSul8DVTZ0E675qXUQ==",
      "path": "microsoft.visualstudio.services.extensionmanagement.webapi/16.206.0-preview",
      "hashPath": "microsoft.visualstudio.services.extensionmanagement.webapi.16.206.0-preview.nupkg.sha512"
    },
    "Microsoft.VisualStudio.Services.Gallery.WebApi/16.206.0-preview": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-8HM8zP6ugI5Ejj213pctEsyt+g6oiAkgKrptvLwrLWEcrjc7nAOdqshOS4hfVZweT4+n/yOeJP7nZUbiCuKJcw==",
      "path": "microsoft.visualstudio.services.gallery.webapi/16.206.0-preview",
      "hashPath": "microsoft.visualstudio.services.gallery.webapi.16.206.0-preview.nupkg.sha512"
    },
    "Microsoft.VisualStudio.Services.InteractiveClient/16.206.0-preview": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-UGCJDJtrGFn3gUXcfe0CtwNcMeqnHDZaq/OgBKa7a9nIUvRk6dOFbeOgxBINoENydCkW6WakSkZbdADZGeHWVw==",
      "path": "microsoft.visualstudio.services.interactiveclient/16.206.0-preview",
      "hashPath": "microsoft.visualstudio.services.interactiveclient.16.206.0-preview.nupkg.sha512"
    },
    "Microsoft.VisualStudio.Services.Packaging.Client/16.206.0-preview": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-MscUctHUMPKxdKq19+IBApDsczmIFmuRTmptGT6HTVLjDCENfm0LkKgPZAj3rMDLev9DQq5EABWD9ponSjNnmw==",
      "path": "microsoft.visualstudio.services.packaging.client/16.206.0-preview",
      "hashPath": "microsoft.visualstudio.services.packaging.client.16.206.0-preview.nupkg.sha512"
    },
    "Microsoft.VisualStudio.Services.Release.Client/16.206.0-preview": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-HQ9xka0s+CdFYMWH+trq6ATS932oPsm8oxrdWAZFRc0r+/ZeQTne7hnbxTPawXRVBI8RpwdX4INRP6+H6BQ1xg==",
      "path": "microsoft.visualstudio.services.release.client/16.206.0-preview",
      "hashPath": "microsoft.visualstudio.services.release.client.16.206.0-preview.nupkg.sha512"
    },
    "Microsoft.VisualStudio.Services.Search.Client/16.206.0-preview": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-KMGDBF31m/jAGQkVwWDhMT7bHXRHd4xUVN5EwxhFEyDPzMHIegmzkIH+jGv8QG/KxwuoCjRdbJ03tWJw10Rcrg==",
      "path": "microsoft.visualstudio.services.search.client/16.206.0-preview",
      "hashPath": "microsoft.visualstudio.services.search.client.16.206.0-preview.nupkg.sha512"
    },
    "Microsoft.VisualStudio.Services.ServiceEndpoints.WebApi/16.206.0-preview": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-cerkT7u6RHvUo0ve2Fy+y/UmaPbZFe3GAsRwaw/HMYs0UR/YNQE3pAFL/CqHMFG9p42tF6VqFAhFZT456AVtfw==",
      "path": "microsoft.visualstudio.services.serviceendpoints.webapi/16.206.0-preview",
      "hashPath": "microsoft.visualstudio.services.serviceendpoints.webapi.16.206.0-preview.nupkg.sha512"
    },
    "Microsoft.VisualStudio.Services.ServiceHooks.WebApi/16.206.0-preview": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-Ab8k+52rg7bZGVlOu3eOoB3/POXX+KqbB1RR3Jktbka3aptkfsaTGGtvQ83lIHS5Q0FBUDNTxu1G+Hmjutm2Fw==",
      "path": "microsoft.visualstudio.services.servicehooks.webapi/16.206.0-preview",
      "hashPath": "microsoft.visualstudio.services.servicehooks.webapi.16.206.0-preview.nupkg.sha512"
    },
    "Microsoft.Web.WebView2/1.0.864.35": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-V1qyLRiAZ31qmOOCFCjoONgaUfvJRiTHWcJWkT3V7pluM2+P6QAgqmbE4UX7Gt4sh6eN34wqM30OnTZ6HXI/sw==",
      "path": "microsoft.web.webview2/1.0.864.35",
      "hashPath": "microsoft.web.webview2.1.0.864.35.nupkg.sha512"
    },
    "Microsoft.Win32.Primitives/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-9ZQKCWxH7Ijp9BfahvL2Zyf1cJIk8XYLF6Yjzr2yi0b2cOut/HQ31qf1ThHAgCc3WiZMdnWcfJCgN82/0UunxA==",
      "path": "microsoft.win32.primitives/4.3.0",
      "hashPath": "microsoft.win32.primitives.4.3.0.nupkg.sha512"
    },
    "Microsoft.Win32.Registry/5.0.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-dDoKi0PnDz31yAyETfRntsLArTlVAVzUzCIvvEDsDsucrl33Dl8pIJG06ePTJTI3tGpeyHS9Cq7Foc/s4EeKcg==",
      "path": "microsoft.win32.registry/5.0.0",
      "hashPath": "microsoft.win32.registry.5.0.0.nupkg.sha512"
    },
    "Microsoft.Windows.SDK.Contracts/10.0.17763.1000": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-D1VmIbDU1caa+xYy3Soyk1wwpaJqpBgvjFONd0yDkwEtF0ANIP08Y01pk06erPcYZzM9xO7/fkg2wge37lHpiA==",
      "path": "microsoft.windows.sdk.contracts/10.0.17763.1000",
      "hashPath": "microsoft.windows.sdk.contracts.10.0.17763.1000.nupkg.sha512"
    },
    "NETStandard.Library/1.6.1": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-WcSp3+vP+yHNgS8EV5J7pZ9IRpeDuARBPN28by8zqff1wJQXm26PVU8L3/fYLBJVU7BtDyqNVWq2KlCVvSSR4A==",
      "path": "netstandard.library/1.6.1",
      "hashPath": "netstandard.library.1.6.1.nupkg.sha512"
    },
    "Newtonsoft.Json/12.0.3": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-6mgjfnRB4jKMlzHSl+VD+oUc1IebOZabkbyWj2RiTgWwYPPuaK1H97G1sHqGwPlS5npiF5Q0OrxN1wni2n5QWg==",
      "path": "newtonsoft.json/12.0.3",
      "hashPath": "newtonsoft.json.12.0.3.nupkg.sha512"
    },
    "Newtonsoft.Json.Bson/1.0.1": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-5PYT/IqQ+UK31AmZiSS102R6EsTo+LGTSI8bp7WAUqDKaF4wHXD8U9u4WxTI1vc64tYi++8p3dk3WWNqPFgldw==",
      "path": "newtonsoft.json.bson/1.0.1",
      "hashPath": "newtonsoft.json.bson.1.0.1.nupkg.sha512"
    },
    "PowerShellStandard.Library/7.0.0-preview.1": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-vd2iKiQjgB/Lh3270aMgdq/NdVq/qNHsLM8P7k/oD3hALG1UOzePa62TOSK6RlQClfXW1xI9Y1e+haHlUkF3PA==",
      "path": "powershellstandard.library/7.0.0-preview.1",
      "hashPath": "powershellstandard.library.7.0.0-preview.1.nupkg.sha512"
    },
    "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-7VSGO0URRKoMEAq0Sc9cRz8mb6zbyx/BZDEWhgPdzzpmFhkam3fJ1DAGWFXBI4nGlma+uPKpfuMQP5LXRnOH5g==",
      "path": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
      "hashPath": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512"
    },
    "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-0oAaTAm6e2oVH+/Zttt0cuhGaePQYKII1dY8iaqP7CvOpVKgLybKRFvQjXR2LtxXOXTVPNv14j0ot8uV+HrUmw==",
      "path": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
      "hashPath": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512"
    },
    "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-G24ibsCNi5Kbz0oXWynBoRgtGvsw5ZSVEWjv13/KiCAM8C6wz9zzcCniMeQFIkJ2tasjo2kXlvlBZhplL51kGg==",
      "path": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
      "hashPath": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512"
    },
    "runtime.native.System/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==",
      "path": "runtime.native.system/4.3.0",
      "hashPath": "runtime.native.system.4.3.0.nupkg.sha512"
    },
    "runtime.native.System.Data.SqlClient.sni/4.4.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-A8v6PGmk+UGbfWo5Ixup0lPM4swuSwOiayJExZwKIOjTlFFQIsu3QnDXECosBEyrWSPryxBVrdqtJyhK3BaupQ==",
      "path": "runtime.native.system.data.sqlclient.sni/4.4.0",
      "hashPath": "runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512"
    },
    "runtime.native.System.IO.Compression/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-INBPonS5QPEgn7naufQFXJEp3zX6L4bwHgJ/ZH78aBTpeNfQMtf7C6VrAFhlq2xxWBveIOWyFzQjJ8XzHMhdOQ==",
      "path": "runtime.native.system.io.compression/4.3.0",
      "hashPath": "runtime.native.system.io.compression.4.3.0.nupkg.sha512"
    },
    "runtime.native.System.Net.Http/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-ZVuZJqnnegJhd2k/PtAbbIcZ3aZeITq3sj06oKfMBSfphW3HDmk/t4ObvbOk/JA/swGR0LNqMksAh/f7gpTROg==",
      "path": "runtime.native.system.net.http/4.3.0",
      "hashPath": "runtime.native.system.net.http.4.3.0.nupkg.sha512"
    },
    "runtime.native.System.Security.Cryptography.Apple/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-DloMk88juo0OuOWr56QG7MNchmafTLYWvABy36izkrLI5VledI0rq28KGs1i9wbpeT9NPQrx/wTf8U2vazqQ3Q==",
      "path": "runtime.native.system.security.cryptography.apple/4.3.0",
      "hashPath": "runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512"
    },
    "runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-QR1OwtwehHxSeQvZKXe+iSd+d3XZNkEcuWMFYa2i0aG1l+lR739HPicKMlTbJst3spmeekDVBUS7SeS26s4U/g==",
      "path": "runtime.native.system.security.cryptography.openssl/4.3.2",
      "hashPath": "runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512"
    },
    "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-I+GNKGg2xCHueRd1m9PzeEW7WLbNNLznmTuEi8/vZX71HudUbx1UTwlGkiwMri7JLl8hGaIAWnA/GONhu+LOyQ==",
      "path": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
      "hashPath": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512"
    },
    "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-1Z3TAq1ytS1IBRtPXJvEUZdVsfWfeNEhBkbiOCGEl9wwAfsjP2lz3ZFDx5tq8p60/EqbS0HItG5piHuB71RjoA==",
      "path": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
      "hashPath": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512"
    },
    "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-kVXCuMTrTlxq4XOOMAysuNwsXWpYeboGddNGpIgNSZmv1b6r/s/DPk0fYMB7Q5Qo4bY68o48jt4T4y5BVecbCQ==",
      "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple/4.3.0",
      "hashPath": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512"
    },
    "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-6mU/cVmmHtQiDXhnzUImxIcDL48GbTk+TsptXyJA+MIOG9LRjPoAQC/qBFB7X+UNyK86bmvGwC8t+M66wsYC8w==",
      "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
      "hashPath": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512"
    },
    "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-vjwG0GGcTW/PPg6KVud8F9GLWYuAV1rrw1BKAqY0oh4jcUqg15oYF1+qkGR2x2ZHM4DQnWKQ7cJgYbfncz/lYg==",
      "path": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
      "hashPath": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512"
    },
    "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-7KMFpTkHC/zoExs+PwP8jDCWcrK9H6L7soowT80CUx3e+nxP/AFnq0AQAW5W76z2WYbLAYCRyPfwYFG6zkvQRw==",
      "path": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
      "hashPath": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512"
    },
    "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-xrlmRCnKZJLHxyyLIqkZjNXqgxnKdZxfItrPkjI+6pkRo5lHX8YvSZlWrSI5AVwLMi4HbNWP7064hcAWeZKp5w==",
      "path": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
      "hashPath": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512"
    },
    "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-leXiwfiIkW7Gmn7cgnNcdtNAU70SjmKW3jxGj1iKHOvdn0zRWsgv/l2OJUO5zdGdiv2VRFnAsxxhDgMzofPdWg==",
      "path": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.2",
      "hashPath": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512"
    },
    "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-LbrynESTp3bm5O/+jGL8v0Qg5SJlTV08lpIpFesXjF6uGNMWqFnUQbYBJwZTeua6E/Y7FIM1C54Ey1btLWupdg==",
      "path": "runtime.win-arm64.runtime.native.system.data.sqlclient.sni/4.4.0",
      "hashPath": "runtime.win-arm64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512"
    },
    "runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-38ugOfkYJqJoX9g6EYRlZB5U2ZJH51UP8ptxZgdpS07FgOEToV+lS11ouNK2PM12Pr6X/PpT5jK82G3DwH/SxQ==",
      "path": "runtime.win-x64.runtime.native.system.data.sqlclient.sni/4.4.0",
      "hashPath": "runtime.win-x64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512"
    },
    "runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-YhEdSQUsTx+C8m8Bw7ar5/VesXvCFMItyZF7G1AUY+OM0VPZUOeAVpJ4Wl6fydBGUYZxojTDR3I6Bj/+BPkJNA==",
      "path": "runtime.win-x86.runtime.native.system.data.sqlclient.sni/4.4.0",
      "hashPath": "runtime.win-x86.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512"
    },
    "System.AppContext/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-fKC+rmaLfeIzUhagxY17Q9siv/sPrjjKcfNg1Ic8IlQkZLipo8ljcaZQu4VtI4Jqbzjc2VTjzGLF6WmsRXAEgA==",
      "path": "system.appcontext/4.3.0",
      "hashPath": "system.appcontext.4.3.0.nupkg.sha512"
    },
    "System.Buffers/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-ratu44uTIHgeBeI0dE8DWvmXVBSo4u7ozRZZHOMmK/JPpYyo0dAfgSiHlpiObMQ5lEtEyIXA40sKRYg5J6A8uQ==",
      "path": "system.buffers/4.3.0",
      "hashPath": "system.buffers.4.3.0.nupkg.sha512"
    },
    "System.Collections/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==",
      "path": "system.collections/4.3.0",
      "hashPath": "system.collections.4.3.0.nupkg.sha512"
    },
    "System.Collections.Concurrent/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-ztl69Xp0Y/UXCL+3v3tEU+lIy+bvjKNUmopn1wep/a291pVPK7dxBd6T7WnlQqRog+d1a/hSsgRsmFnIBKTPLQ==",
      "path": "system.collections.concurrent/4.3.0",
      "hashPath": "system.collections.concurrent.4.3.0.nupkg.sha512"
    },
    "System.Collections.NonGeneric/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-prtjIEMhGUnQq6RnPEYLpFt8AtLbp9yq2zxOSrY7KJJZrw25Fi97IzBqY7iqssbM61Ek5b8f3MG/sG1N2sN5KA==",
      "path": "system.collections.nongeneric/4.3.0",
      "hashPath": "system.collections.nongeneric.4.3.0.nupkg.sha512"
    },
    "System.Collections.Specialized/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-Epx8PoVZR0iuOnJJDzp7pWvdfMMOAvpUo95pC4ScH2mJuXkKA2Y4aR3cG9qt2klHgSons1WFh4kcGW7cSXvrxg==",
      "path": "system.collections.specialized/4.3.0",
      "hashPath": "system.collections.specialized.4.3.0.nupkg.sha512"
    },
    "System.ComponentModel/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-VyGn1jGRZVfxnh8EdvDCi71v3bMXrsu8aYJOwoV7SNDLVhiEqwP86pPMyRGsDsxhXAm2b3o9OIqeETfN5qfezw==",
      "path": "system.componentmodel/4.3.0",
      "hashPath": "system.componentmodel.4.3.0.nupkg.sha512"
    },
    "System.ComponentModel.Annotations/4.4.1": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-ToiYqSCioqhtspq2O/jYKtyTC/T0uwWHBTYlzCi6PRbSSHArN1IaRWeHffDamvms5sye5FDUWCfNZgubQpNRsA==",
      "path": "system.componentmodel.annotations/4.4.1",
      "hashPath": "system.componentmodel.annotations.4.4.1.nupkg.sha512"
    },
    "System.ComponentModel.Primitives/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-j8GUkCpM8V4d4vhLIIoBLGey2Z5bCkMVNjEZseyAlm4n5arcsJOeI3zkUP+zvZgzsbLTYh4lYeP/ZD/gdIAPrw==",
      "path": "system.componentmodel.primitives/4.3.0",
      "hashPath": "system.componentmodel.primitives.4.3.0.nupkg.sha512"
    },
    "System.ComponentModel.TypeConverter/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-16pQ6P+EdhcXzPiEK4kbA953Fu0MNG2ovxTZU81/qsCd1zPRsKc3uif5NgvllCY598k6bI0KUyKW8fanlfaDQg==",
      "path": "system.componentmodel.typeconverter/4.3.0",
      "hashPath": "system.componentmodel.typeconverter.4.3.0.nupkg.sha512"
    },
    "System.Composition/6.0.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-d7wMuKQtfsxUa7S13tITC8n1cQzewuhD5iDjZtK2prwFfKVzdYtgrTHgjaV03Zq7feGQ5gkP85tJJntXwInsJA==",
      "path": "system.composition/6.0.0",
      "hashPath": "system.composition.6.0.0.nupkg.sha512"
    },
    "System.Composition.AttributedModel/6.0.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-WK1nSDLByK/4VoC7fkNiFuTVEiperuCN/Hyn+VN30R+W2ijO1d0Z2Qm0ScEl9xkSn1G2MyapJi8xpf4R8WRa/w==",
      "path": "system.composition.attributedmodel/6.0.0",
      "hashPath": "system.composition.attributedmodel.6.0.0.nupkg.sha512"
    },
    "System.Composition.Convention/6.0.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-XYi4lPRdu5bM4JVJ3/UIHAiG6V6lWWUlkhB9ab4IOq0FrRsp0F4wTyV4Dj+Ds+efoXJ3qbLqlvaUozDO7OLeXA==",
      "path": "system.composition.convention/6.0.0",
      "hashPath": "system.composition.convention.6.0.0.nupkg.sha512"
    },
    "System.Composition.Hosting/6.0.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-w/wXjj7kvxuHPLdzZ0PAUt++qJl03t7lENmb2Oev0n3zbxyNULbWBlnd5J5WUMMv15kg5o+/TCZFb6lSwfaUUQ==",
      "path": "system.composition.hosting/6.0.0",
      "hashPath": "system.composition.hosting.6.0.0.nupkg.sha512"
    },
    "System.Composition.Runtime/6.0.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-qkRH/YBaMPTnzxrS5RDk1juvqed4A6HOD/CwRcDGyPpYps1J27waBddiiq1y93jk2ZZ9wuA/kynM+NO0kb3PKg==",
      "path": "system.composition.runtime/6.0.0",
      "hashPath": "system.composition.runtime.6.0.0.nupkg.sha512"
    },
    "System.Composition.TypedParts/6.0.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-iUR1eHrL8Cwd82neQCJ00MpwNIBs4NZgXzrPqx8NJf/k4+mwBO0XCRmHYJT4OLSwDDqh5nBLJWkz5cROnrGhRA==",
      "path": "system.composition.typedparts/6.0.0",
      "hashPath": "system.composition.typedparts.6.0.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.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.Runtime.WindowsRuntime/4.6.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-IWrs1TmbxP65ZZjIglNyvDkFNoV5q2Pofg5WO7I8RKQOpLdFprQSh3xesOoClBqR4JHr4nEB1Xk1MqLPW1jPuQ==",
      "path": "system.runtime.windowsruntime/4.6.0",
      "hashPath": "system.runtime.windowsruntime.4.6.0.nupkg.sha512"
    },
    "System.Runtime.WindowsRuntime.UI.Xaml/4.6.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-r4tNw5v5kqRJ9HikWpcyNf3suGw7DjX93svj9iBjtdeLqL8jt9Z+7f+s4wrKZJr84u8IMsrIjt8K6jYvkRqMSg==",
      "path": "system.runtime.windowsruntime.ui.xaml/4.6.0",
      "hashPath": "system.runtime.windowsruntime.ui.xaml.4.6.0.nupkg.sha512"
    },
    "System.Security.AccessControl/5.0.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-dagJ1mHZO3Ani8GH0PHpPEe/oYO+rVdbQjvjJkBRNQkX4t0r1iaeGn8+/ybkSLEan3/slM0t59SVdHzuHf2jmw==",
      "path": "system.security.accesscontrol/5.0.0",
      "hashPath": "system.security.accesscontrol.5.0.0.nupkg.sha512"
    },
    "System.Security.Cryptography.Algorithms/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-W1kd2Y8mYSCgc3ULTAZ0hOP2dSdG5YauTb1089T0/kRcN2MpSAW1izOFROrJgxSlMn3ArsgHXagigyi+ibhevg==",
      "path": "system.security.cryptography.algorithms/4.3.0",
      "hashPath": "system.security.cryptography.algorithms.4.3.0.nupkg.sha512"
    },
    "System.Security.Cryptography.Cng/4.5.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-WG3r7EyjUe9CMPFSs6bty5doUqT+q9pbI80hlNzo2SkPkZ4VTuZkGWjpp77JB8+uaL4DFPRdBsAY+DX3dBK92A==",
      "path": "system.security.cryptography.cng/4.5.0",
      "hashPath": "system.security.cryptography.cng.4.5.0.nupkg.sha512"
    },
    "System.Security.Cryptography.Csp/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-X4s/FCkEUnRGnwR3aSfVIkldBmtURMhmexALNTwpjklzxWU7yjMk7GHLKOZTNkgnWnE0q7+BCf9N2LVRWxewaA==",
      "path": "system.security.cryptography.csp/4.3.0",
      "hashPath": "system.security.cryptography.csp.4.3.0.nupkg.sha512"
    },
    "System.Security.Cryptography.Encoding/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw==",
      "path": "system.security.cryptography.encoding/4.3.0",
      "hashPath": "system.security.cryptography.encoding.4.3.0.nupkg.sha512"
    },
    "System.Security.Cryptography.OpenSsl/4.4.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-is11qLXIHKIvbTipyB1an8FT1ZKavmgf/qJUSIz7ZP830ALRRhPSt5NhplW0/wMk0tNDQWQLluVap6HsQN4HMg==",
      "path": "system.security.cryptography.openssl/4.4.0",
      "hashPath": "system.security.cryptography.openssl.4.4.0.nupkg.sha512"
    },
    "System.Security.Cryptography.Primitives/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg==",
      "path": "system.security.cryptography.primitives/4.3.0",
      "hashPath": "system.security.cryptography.primitives.4.3.0.nupkg.sha512"
    },
    "System.Security.Cryptography.ProtectedData/4.4.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-cJV7ScGW7EhatRsjehfvvYVBvtiSMKgN8bOVI0bQhnF5bU7vnHVIsH49Kva7i7GWaWYvmEzkYVk1TC+gZYBEog==",
      "path": "system.security.cryptography.protecteddata/4.4.0",
      "hashPath": "system.security.cryptography.protecteddata.4.4.0.nupkg.sha512"
    },
    "System.Security.Cryptography.X509Certificates/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw==",
      "path": "system.security.cryptography.x509certificates/4.3.0",
      "hashPath": "system.security.cryptography.x509certificates.4.3.0.nupkg.sha512"
    },
    "System.Security.Principal.Windows/5.0.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-t0MGLukB5WAVU9bO3MGzvlGnyJPgUlcwerXn1kzBRjwLKixT96XV0Uza41W49gVd8zEMFu9vQEFlv0IOrytICA==",
      "path": "system.security.principal.windows/5.0.0",
      "hashPath": "system.security.principal.windows.5.0.0.nupkg.sha512"
    },
    "System.Security.SecureString/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-PnXp38O9q/2Oe4iZHMH60kinScv6QiiL2XH54Pj2t0Y6c2zKPEiAZsM/M3wBOHLNTBDFP0zfy13WN2M0qFz5jg==",
      "path": "system.security.securestring/4.3.0",
      "hashPath": "system.security.securestring.4.3.0.nupkg.sha512"
    },
    "System.Text.Encoding/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==",
      "path": "system.text.encoding/4.3.0",
      "hashPath": "system.text.encoding.4.3.0.nupkg.sha512"
    },
    "System.Text.Encoding.CodePages/4.4.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-6JX7ZdaceBiLKLkYt8zJcp4xTJd1uYyXXEkPw6mnlUIjh1gZPIVKPtRXPmY5kLf6DwZmf5YLwR3QUrRonl7l0A==",
      "path": "system.text.encoding.codepages/4.4.0",
      "hashPath": "system.text.encoding.codepages.4.4.0.nupkg.sha512"
    },
    "System.Text.Encoding.Extensions/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-YVMK0Bt/A43RmwizJoZ22ei2nmrhobgeiYwFzC4YAN+nue8RF6djXDMog0UCn+brerQoYVyaS+ghy9P/MUVcmw==",
      "path": "system.text.encoding.extensions/4.3.0",
      "hashPath": "system.text.encoding.extensions.4.3.0.nupkg.sha512"
    },
    "System.Text.RegularExpressions/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-RpT2DA+L660cBt1FssIE9CAGpLFdFPuheB7pLpKpn6ZXNby7jDERe8Ua/Ne2xGiwLVG2JOqziiaVCGDon5sKFA==",
      "path": "system.text.regularexpressions/4.3.0",
      "hashPath": "system.text.regularexpressions.4.3.0.nupkg.sha512"
    },
    "System.Threading/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==",
      "path": "system.threading/4.3.0",
      "hashPath": "system.threading.4.3.0.nupkg.sha512"
    },
    "System.Threading.Tasks/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==",
      "path": "system.threading.tasks/4.3.0",
      "hashPath": "system.threading.tasks.4.3.0.nupkg.sha512"
    },
    "System.Threading.Tasks.Extensions/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-npvJkVKl5rKXrtl1Kkm6OhOUaYGEiF9wFbppFRWSMoApKzt2PiPHT2Bb8a5sAWxprvdOAtvaARS9QYMznEUtug==",
      "path": "system.threading.tasks.extensions/4.3.0",
      "hashPath": "system.threading.tasks.extensions.4.3.0.nupkg.sha512"
    },
    "System.Threading.Timer/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-Z6YfyYTCg7lOZjJzBjONJTFKGN9/NIYKSxhU5GRd+DTwHSZyvWp1xuI5aR+dLg+ayyC5Xv57KiY4oJ0tMO89fQ==",
      "path": "system.threading.timer/4.3.0",
      "hashPath": "system.threading.timer.4.3.0.nupkg.sha512"
    },
    "System.Xml.ReaderWriter/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-GrprA+Z0RUXaR4N7/eW71j1rgMnEnEVlgii49GZyAjTH7uliMnrOU3HNFBr6fEDBCJCIdlVNq9hHbaDR621XBA==",
      "path": "system.xml.readerwriter/4.3.0",
      "hashPath": "system.xml.readerwriter.4.3.0.nupkg.sha512"
    },
    "System.Xml.XDocument/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-5zJ0XDxAIg8iy+t4aMnQAu0MqVbqyvfoUVl1yDV61xdo3Vth45oA2FoY4pPkxYAH5f8ixpmTqXeEIya95x0aCQ==",
      "path": "system.xml.xdocument/4.3.0",
      "hashPath": "system.xml.xdocument.4.3.0.nupkg.sha512"
    },
    "System.Xml.XmlDocument/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-lJ8AxvkX7GQxpC6GFCeBj8ThYVyQczx2+f/cWHJU8tjS7YfI6Cv6bon70jVEgs2CiFbmmM8b9j1oZVx0dSI2Ww==",
      "path": "system.xml.xmldocument/4.3.0",
      "hashPath": "system.xml.xmldocument.4.3.0.nupkg.sha512"
    },
    "System.Xml.XmlSerializer/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-MYoTCP7EZ98RrANESW05J5ZwskKDoN0AuZ06ZflnowE50LTpbR5yRg3tHckTVm5j/m47stuGgCrCHWePyHS70Q==",
      "path": "system.xml.xmlserializer/4.3.0",
      "hashPath": "system.xml.xmlserializer.4.3.0.nupkg.sha512"
    },
    "System.Xml.XPath/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-v1JQ5SETnQusqmS3RwStF7vwQ3L02imIzl++sewmt23VGygix04pEH+FCj1yWb+z4GDzKiljr1W7Wfvrx0YwgA==",
      "path": "system.xml.xpath/4.3.0",
      "hashPath": "system.xml.xpath.4.3.0.nupkg.sha512"
    },
    "System.Xml.XPath.XmlDocument/4.3.0": {
      "type": "package",
      "serviceable": true,
      "sha512": "sha512-A/uxsWi/Ifzkmd4ArTLISMbfFs6XpRPsXZonrIqyTY70xi8t+mDtvSM5Os0RqyRDobjMBwIDHDL4NOIbkDwf7A==",
      "path": "system.xml.xpath.xmldocument/4.3.0",
      "hashPath": "system.xml.xpath.xmldocument.4.3.0.nupkg.sha512"
    },
    "TfsCmdlets.Common/2.6.0.2898": {
      "type": "project",
      "serviceable": false,
      "sha512": ""
    }
  }
}
tools\TfsCmdlets\Lib\Core\TfsCmdlets.dll
md5: 1CE7FACC795335BD3DD15EBCBE955E0E | sha1: 09CCB63D7299E458DCDEEE5C24E6CE9EED340324 | sha256: EA9380D894DE57CFB0375364BD4AA5F71146D25A8AF72E88B1198768AB1106B0 | sha512: 355400CEC3BDC24CFCAC0F42CDD9CD813A0731522FD19B5CBCE80CB2B9FADF497881E69DAFAC6804A87AF574035F41811168B1B62061C48D134919EA6637C571
tools\TfsCmdlets\Lib\Core\TfsCmdlets.pdb
 
tools\TfsCmdlets\Lib\Core\TfsCmdlets.xml
<?xml version="1.0"?>
<doc>
    <assembly>
        <name>TfsCmdlets</name>
    </assembly>
    <members>
        <member name="T:TfsCmdlets.AssemblyResolver">
            <summary>
            This class is used to resolve TfsCmdlets assemblies in runtime.
            </summary>
        </member>
        <member name="P:TfsCmdlets.AssemblyResolver.Assemblies">
            <summary>
            Mantains a list of all assemblies stored in the /Lib folder of this module to support 
            on-demand assembly resolving and loading
            </summary>
        </member>
        <member name="M:TfsCmdlets.AssemblyResolver.Register">
            <summary>
            Registers the Assembly Resolver in the platform-specific assembly resolution mechanism and 
            loads the list of private assemblies to the Assemblies dictionary
            </summary>
        </member>
        <member name="T:TfsCmdlets.AssemblyResolver.AssemblyEntry">
            <summary>
            Represents a private assembly
            </summary>
        </member>
        <member name="M:TfsCmdlets.AssemblyResolver.AssemblyEntry.#ctor(System.String,System.String)">
            <summary>
            Creates an instance from an assembly name and its file path
            </summary>
            <param name="name">Assembly name (e.g. "Newtonsoft.json")</param>
            <param name="path">Full path to assembly file (e.g. "X:/path/to/module/Lib/Newtonsoft.json")</param>
        </member>
        <member name="P:TfsCmdlets.AssemblyResolver.AssemblyEntry.Name">
            <summary>
             Assembly name
            </summary>
        </member>
        <member name="P:TfsCmdlets.AssemblyResolver.AssemblyEntry.Path">
            <summary>
            Full path to assembly file
            </summary>
        </member>
        <member name="P:TfsCmdlets.AssemblyResolver.AssemblyEntry.IsLoaded">
            <summary>
            Indicates whether this assembly has already been loaded by the Assembly Resolver
            </summary>
        </member>
        <member name="P:TfsCmdlets.AssemblyResolver.AssemblyEntry.Assembly">
            <summary>
            The actual assembly represented by this instance. If the assembly wasn't previously
            loaded, it will be read from disk and returned to the caller
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Admin.GetConfigurationConnectionString">
            <summary>
            Gets the configuration server database connection string.
            </summary>
            <related uri="https://tfscmdlets.dev/admin/get-tfsconfigurationConnectionstring/">Online version:</related>
            <related>Get-TfsInstallationPath</related>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Admin.GetConfigurationConnectionString.ComputerName">
            <summary>
            Specifies the name of a Team Foundation Server application tier from which to 
            retrieve the connection string.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Admin.GetConfigurationConnectionString.Session">
            <summary>
            The machine name of the server where the TFS component is installed. 
            It must be properly configured for PowerShell Remoting in case it's a remote machine. 
            Optionally, a System.Management.Automation.Runspaces.PSSession object pointing to a 
            previously opened PowerShell Remote session can be provided instead. 
            When omitted, defaults to the local machine where the script is being run
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Admin.GetConfigurationConnectionString.Version">
            <summary>
            The TFS version number, represented by the year in its name. For e.g. TFS 2015, use "2015".
            When omitted, will default to the newest installed version of TFS / Azure DevOps Server
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Admin.GetConfigurationConnectionString.Credential">
            <summary>
            The user credentials to be used to access a remote machine. Those credentials must have 
            the required permission to execute a PowerShell Remote session on that computer.
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Admin.GetInstallationPath">
            <summary>
              Gets the installation path of a given Team Foundation Server component.
            </summary>
            <remarks>
             Many times a Team Foundation Server admin needs to retrieve the location where 
             TFS is actually installed. That can be useful, for instance, to locate tools like 
             TfsSecurity or TfsServiceControl. That information is recorded at setup time, 
             in a well-known location in the Windows Registry of the server where TFS is installed.
            </remarks>
            <example>
              <code>Get-TfsInstallationPath -Version 2017</code>
              <para>Gets the root folder (the BaseInstallationPath) of TFS in the local server where the cmdlet is being run</para>
            </example>
            <example>
              <code>Get-TfsInstallationPath -Computer SPTFSSRV -Version 2015 -Component SharepointExtensions -Credentials (Get-Credentials)</code>
              <para>Gets the location where the SharePoint Extensions have been installed in the remote 
                    server SPTFSSRV, prompting for admin credentials to be used for establishing a 
                    PS Remoting session to the server</para>
            </example>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Admin.GetInstallationPath.ComputerName">
            <summary>
            The machine name of the server where the TFS component is installed. 
            It must be properly configured for PowerShell Remoting in case it's a remote machine. 
            Optionally, a System.Management.Automation.Runspaces.PSSession object pointing to a 
            previously opened PowerShell Remote session can be provided instead. 
            When omitted, defaults to the local machine where the script is being run
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Admin.GetInstallationPath.Session">
            <summary>
            The machine name of the server where the TFS component is installed. 
            It must be properly configured for PowerShell Remoting in case it's a remote machine. 
            Optionally, a System.Management.Automation.Runspaces.PSSession object pointing to a 
            previously opened PowerShell Remote session can be provided instead. 
            When omitted, defaults to the local machine where the script is being run
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Admin.GetInstallationPath.Component">
            <summary>
            Indicates the TFS component whose installation path is being searched for. 
            For the main TFS installation directory, use BaseInstallation. When omitted, 
            defaults to BaseInstallation.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Admin.GetInstallationPath.Version">
            <summary>
            The TFS version number, represented by the year in its name. For e.g. TFS 2015, use "2015".
            When omitted, will default to the newest installed version of TFS / Azure DevOps Server
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Admin.GetInstallationPath.Credential">
            <summary>
            The user credentials to be used to access a remote machine. Those credentials must have 
            the required permission to execute a PowerShell Remote session on that computer and also 
            the permission to access the Windows Registry.
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Admin.GetVersion">
            <summary>
              Gets the version information about Team Foundation / Azure DevOps servers and 
              Azure DevOps Services organizations.
            </summary>
            <remarks>
            The Get-TfsVersion cmdlet retrieves version information from the supplied team project collection or Azure DevOps organization. 
            When available/applicable, detailed information about installed updates, deployed sprints and so on are also provided.
            </remarks>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Admin.GetVersion.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Admin.GetVersion.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Admin.Registry.GetRegistryValue">
            <summary>
              Gets the value of a given Team Foundation Server registry entry.
            </summary>
            <remarks>
              The 'Get-TfsRegistry' cmdlet retrieves the value of a TFS registry entry at the given path and scope. 
            
              Registry entries can be scoped to the server, to a collection or to a specific user. 
            </remarks>
            <notes>
              The registry is an internal, hierarchical database that TFS uses to store its 
              configuration and user-level settings and preferences.
            
              IMPORTANT: Retrieving user-scoped values is currently not supported.
            </notes>
            <example>
              <code>Get-TfsRegistryValue -Path '/Service/Integration/Settings/EmailEnabled'</code>
              <para>Gets the current value of the 'EmailEnabled' key in the TFS Registry</para>
            </example>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Admin.Registry.GetRegistryValue.Path">
            <summary>
            Specifies the full path of the TFS Registry key
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Admin.Registry.GetRegistryValue.Scope">
            <summary>
            Specifies the scope under which to search for the key. 
            When omitted, defaults to the Server scope.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Admin.Registry.GetRegistryValue.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Admin.Registry.GetRegistryValue.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Admin.Registry.SetRegistryValue">
            <summary>
              Sets the value of a given Team Foundation Server registry entry.
            </summary>
            <remarks>
              The 'Set-TfsRegistry' cmdlet changes the value of a TFS registry key to the 
              value specified in the command.
            </remarks>
            <example>
              <code>Get-TfsRegistryValue -Path '/Service/Integration/Settings/EmailEnabled'</code>
              <para>Gets the current value of the 'EmailEnabled' key in the TFS Registry</para>
            </example>
            <notes>
              The registry is an internal, hierarchical database that TFS uses to store its 
              configuration and user-level settings and preferences.
            
              IMPORTANT: Retrieving user-scoped values is currently not supported.
            </notes>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Admin.Registry.SetRegistryValue.Path">
            <summary>
            Specifies the full path of the TFS Registry key
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Admin.Registry.SetRegistryValue.Value">
            <summary>
            Specifies the new value of the Registry key. To remove an existing value, 
            set it to $null
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Admin.Registry.SetRegistryValue.Scope">
            <summary>
            Specifies the scope under which to search for the key. 
            When omitted, defaults to the Server scope.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Admin.Registry.SetRegistryValue.Passthru">
            <summary>
            HELP_PARAM_PASSTHRU
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Admin.Registry.SetRegistryValue.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Admin.Registry.SetRegistryValue.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Artifact.GetArtifact">
            <summary>
            Gets information from one or more artifact feeds.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Artifact.GetArtifact.Artifact">
            <summary>
            Specifies the package (artifact) name. Wildcards are supported. 
            When omitted, returns all packages in the specified feed.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Artifact.GetArtifact.Feed">
            <summary>
            Specifies the feed name. 
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Artifact.GetArtifact.IncludeDeleted">
            <summary>
            Includes deletes packages in the result. 
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Artifact.GetArtifact.IncludeDescription">
            <summary>
            Includes the package description in the results. 
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Artifact.GetArtifact.IncludePrerelease">
            <summary>
            Includes prerelease packages in the results. Applies only to Nuget packages.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Artifact.GetArtifact.IncludeDelisted">
            <summary>
            Includes delisted packages in the results. Applies only to Nuget packages.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Artifact.GetArtifact.ProtocolType">
            <summary>
            Returns only packages of the specified protocol type.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Artifact.GetArtifact.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Artifact.GetArtifact.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Artifact.GetArtifact.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Artifact.GetArtifactFeed">
            <summary>
            Gets information from one or more artifact feeds.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Artifact.GetArtifactFeed.Feed">
            <summary>
            Specifies the feed name. Wildcards are supported. 
            When omitted, returns all feeds.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Artifact.GetArtifactFeed.Scope">
            <summary>
            Returns only feeds from the given scope (collection or project). 
            When omitted, returns all feeds.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Artifact.GetArtifactFeed.Role">
            <summary>
            Filters by role. Returns only those feeds where the currently logged on user
            has one of the specified roles: either Administrator, Contributor, 
            or Reader level permissions. When omitted, filters by Administrator role.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Artifact.GetArtifactFeed.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Artifact.GetArtifactFeed.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Artifact.GetArtifactFeed.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Artifact.GetArtifactFeedView">
            <summary>
            Gets information from one or more Git repositories in a team project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Artifact.GetArtifactFeedView.View">
            <summary>
            Specifies the view name. Wildcards are supported. 
            When omitted, returns all views.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Artifact.GetArtifactFeedView.Feed">
            <summary>
            Specifies the parent feed.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Artifact.GetArtifactFeedView.Scope">
            <summary>
            Returns only feeds from the given scope (collection or project). 
            When omitted, returns all feeds.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Artifact.GetArtifactFeedView.Role">
            <summary>
            Filters by role. Returns only those feeds where the currently logged on user
            has one of the specified roles: either Administrator, Contributor, 
            or Reader level permissions. When omitted, filters by Administrator role.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Artifact.GetArtifactFeedView.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Artifact.GetArtifactFeedView.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Artifact.GetArtifactFeedView.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Artifact.GetArtifactVersion">
            <summary>
            Gets information from one or more artifact feeds.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Artifact.GetArtifactVersion.Version">
            <summary>
            Specifies the version to return. Wildcards are supported. 
            When omitted, returns all versions of the specified package.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Artifact.GetArtifactVersion.Artifact">
            <summary>
            Specifies the package (artifact) name. 
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Artifact.GetArtifactVersion.Feed">
            <summary>
            Specifies the feed name. 
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Artifact.GetArtifactVersion.IncludeDeleted">
            <summary>
            Includes deletes packages in the result. 
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Artifact.GetArtifactVersion.IncludeDelisted">
            <summary>
            Includes delisted packages in the results. Applies only to Nuget packages.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Artifact.GetArtifactVersion.ProtocolType">
            <summary>
            Returns only packages of the specified protocol type.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Artifact.GetArtifactVersion.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Artifact.GetArtifactVersion.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Artifact.GetArtifactVersion.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Credential.NewCredential">
            <summary>
            Provides credentials to use when you connect to a Team Foundation Server 
            or Azure DevOps organization.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Credential.NewCredential.Url">
            <summary>
            Specifies the URL of the server, collection or organization to connect to.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Credential.NewCredential.Cached">
            <summary>
            HELP_PARAM_CACHED_CREDENTIAL
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Credential.NewCredential.UserName">
            <summary>
            HELP_PARAM_USER_NAME
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Credential.NewCredential.Password">
            <summary>
            HELP_PARAM_PASSWORD
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Credential.NewCredential.Credential">
            <summary>
            HELP_PARAM_CREDENTIAL
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Credential.NewCredential.PersonalAccessToken">
            <summary>
            HELP_PARAM_PERSONAL_ACCESS_TOKEN
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Credential.NewCredential.Interactive">
            <summary>
            HELP_PARAM_INTERACTIVE
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.ExtensionManagement.DisableExtension">
            <summary>
            Disables an extension installed in the specified collection/organization.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ExtensionManagement.DisableExtension.Extension">
            <summary>
            Specifies the ID or the name of the extensions. Wilcards are supported. 
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ExtensionManagement.DisableExtension.Publisher">
            <summary>
            Specifies the ID or the name of the publisher. Wilcards are supported. 
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ExtensionManagement.DisableExtension.Passthru">
            <summary>
            HELP_PARAM_PASSTHRU
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ExtensionManagement.DisableExtension.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ExtensionManagement.DisableExtension.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.ExtensionManagement.EnableExtension">
            <summary>
            Enables a previously disabled extension installed in the specified collection/organization.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ExtensionManagement.EnableExtension.Extension">
            <summary>
            Specifies the ID or the name of the extensions. Wilcards are supported. 
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ExtensionManagement.EnableExtension.Publisher">
            <summary>
            Specifies the ID or the name of the publisher. Wilcards are supported. 
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ExtensionManagement.EnableExtension.Passthru">
            <summary>
            HELP_PARAM_PASSTHRU
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ExtensionManagement.EnableExtension.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ExtensionManagement.EnableExtension.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.ExtensionManagement.GetExtension">
            <summary>
            Gets one or more installed extensions in the specified collection.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ExtensionManagement.GetExtension.Extension">
            <summary>
            Specifies the ID or the name of the extensions. Wilcards are supported. 
            When omitted, returns all extensions installed in the specified organization/collection.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ExtensionManagement.GetExtension.Publisher">
            <summary>
            Specifies the ID or the name of the publisher. Wilcards are supported. 
            When omitted, returns all extensions installed in the specified organization/collection.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ExtensionManagement.GetExtension.IncludeDisabledExtensions">
            <summary>
            Includes disabled extensions in the result. When omitted, disabled extensions are not included in the result.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ExtensionManagement.GetExtension.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ExtensionManagement.GetExtension.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.ExtensionManagement.InstallExtension">
            <summary>
            Installs an extension in the specified organization/collection.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ExtensionManagement.InstallExtension.Extension">
            <summary>
            Specifies the ID of the extension to install.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ExtensionManagement.InstallExtension.Publisher">
            <summary>
            Specifies the ID of the publisher of the extension.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ExtensionManagement.InstallExtension.Version">
            <summary>
            Specifies the version of the extension to install. When omitted, installs the latest version.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ExtensionManagement.InstallExtension.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ExtensionManagement.InstallExtension.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.ExtensionManagement.UninstallExtension">
            <summary>
            Uninstalls one of more extensions from the specified organization/collection.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ExtensionManagement.UninstallExtension.Extension">
            <summary>
            Specifies the ID of the extension to uninstall.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ExtensionManagement.UninstallExtension.Publisher">
            <summary>
            Specifies the ID of the publisher of the extension.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ExtensionManagement.UninstallExtension.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ExtensionManagement.UninstallExtension.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Git.Branch.GetGitBranch">
            <summary>
            Gets information from one or more branches in a remote Git repository.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.Branch.GetGitBranch.Branch">
            <summary>
            Specifies the name of a branch in the supplied Git repository. Wildcards are supported. 
            When omitted, all branches are returned.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.Branch.GetGitBranch.Default">
            <summary>
            Returns the default branch in the given repository.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.Branch.GetGitBranch.Repository">
            <summary>
            HELP_PARAM_GIT_REPOSITORY
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.Branch.GetGitBranch.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.Branch.GetGitBranch.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.Branch.GetGitBranch.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Git.Branch.RemoveGitBranch">
            <summary>
            Removes from one or more branches from a remote Git repository.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.Branch.RemoveGitBranch.Branch">
            <summary>
            Specifies the name of a branch in the supplied Git repository. Wildcards are supported. 
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.Branch.RemoveGitBranch.Repository">
            <summary>
            HELP_PARAM_GIT_REPOSITORY
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.Branch.RemoveGitBranch.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.Branch.RemoveGitBranch.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.Branch.RemoveGitBranch.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Git.Commit.GetGitCommit">
            <summary>
            Gets information from one or more Git commits in a remote repository.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.Commit.GetGitCommit.Author">
            <summary>
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.Commit.GetGitCommit.Committer">
            <summary>
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.Commit.GetGitCommit.CompareVersion">
            <summary>
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.Commit.GetGitCommit.FromCommit">
            <summary>
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.Commit.GetGitCommit.FromDate">
            <summary>
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.Commit.GetGitCommit.ItemPath">
            <summary>
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.Commit.GetGitCommit.ToCommit">
            <summary>
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.Commit.GetGitCommit.ToDate">
            <summary>
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.Commit.GetGitCommit.ExcludeDeletes">
            <summary>
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.Commit.GetGitCommit.IncludeLinks">
            <summary>
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.Commit.GetGitCommit.IncludePushData">
            <summary>
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.Commit.GetGitCommit.IncludeUserImageUrl">
            <summary>
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.Commit.GetGitCommit.ShowOldestCommitsFirst">
            <summary>
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.Commit.GetGitCommit.Skip">
            <summary>
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.Commit.GetGitCommit.Top">
            <summary>
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.Commit.GetGitCommit.Repository">
            <summary>
            HELP_PARAM_GIT_REPOSITORY
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.Commit.GetGitCommit.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.Commit.GetGitCommit.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.Commit.GetGitCommit.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Git.DisableGitRepository">
            <summary>
            Disables one or more Git repositories.
            </summary>
            <remarks>
            Disables access to the repository. When a repository is disabled it cannot be 
            accessed (including clones, pulls, pushes, builds, pull requests etc) 
            but remains discoverable, with a warning message stating it is disabled.
            </remarks>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.DisableGitRepository.Repository">
            <summary>
            Specifies the name or ID of a Git repository. Wildcards are supported. 
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.DisableGitRepository.Passthru">
            <summary>
            HELP_PARAM_PASSTHRU
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.DisableGitRepository.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.DisableGitRepository.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.DisableGitRepository.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Git.EnableGitRepository">
            <summary>
            Enables one or more Git repositories.
            </summary>
            <remarks>
            This cmdlets re-enables access to a repository. When a repository is 
            disabled it cannot be accessed (including clones, pulls, pushes, builds, 
            pull requests etc) but remains discoverable, with a warning message 
            stating it is disabled.
            </remarks>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.EnableGitRepository.Repository">
            <summary>
            Specifies the name or ID of a Git repository. Wildcards are supported. 
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.EnableGitRepository.Passthru">
            <summary>
            HELP_PARAM_PASSTHRU
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.EnableGitRepository.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.EnableGitRepository.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.EnableGitRepository.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Git.GetGitRepository">
            <summary>
            Gets information from one or more Git repositories in a team project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.GetGitRepository.Repository">
            <summary>
            Specifies the name or ID of a Git repository. Wildcards are supported. 
            When omitted, all Git repositories in the supplied team project are returned.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.GetGitRepository.Default">
            <summary>
            Returns the default repository in the given team project.
            The default repository is the one that is created when a team project is created, and has the same name as the team project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.GetGitRepository.IncludeParent">
            <summary>
            Returns details about the repository's parent (forked) repository, if it has one.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.GetGitRepository.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.GetGitRepository.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.GetGitRepository.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Git.Item.GetGitItem">
            <summary>
            Gets information from one or more items (folders and/or files) in a remote Git repository.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.Item.GetGitItem.Item">
            <summary>
            Specifies the path to items (folders and/or files) in the supplied Git repository. Wildcards are supported. 
            When omitted, all items in the root of the Git repository are retrieved.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.Item.GetGitItem.Repository">
            <summary>
            HELP_PARAM_GIT_REPOSITORY
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.Item.GetGitItem.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.Item.GetGitItem.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.Item.GetGitItem.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Git.NewGitRepository">
            <summary>
            Creates a new Git repository in a team project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.NewGitRepository.Repository">
            <summary>
            Specifies the name of the new repository
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.NewGitRepository.ForkFrom">
            <summary>
            Forks the specified reposity. To fork a repository from another team project, 
            specify the repository name in the form "project/repository" or pass in the result of a 
            previous call to Get-TfsGitRepository that returns the source repository.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.NewGitRepository.SourceBranch">
            <summary>
            Forks the specified branch in the source repository. When omitted, forks all branches.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.NewGitRepository.Passthru">
            <summary>
            HELP_PARAM_PASSTHRU
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.NewGitRepository.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.NewGitRepository.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.NewGitRepository.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Git.Policy.GetGitBranchPolicy">
            <summary>
            Gets the Git branch policy configuration of the given Git branches.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.Policy.GetGitBranchPolicy.PolicyType">
            <summary>
            Specifies the policy type of the branch policy to return. Wildcards are supported. 
            When omitted, all branch policies defined for the given branch are returned.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.Policy.GetGitBranchPolicy.Branch">
            <summary>
            Specifies the name of the branch to query for branch policies. When omitted, 
            the default branch in the given repository is queried.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.Policy.GetGitBranchPolicy.Repository">
            <summary>
            HELP_PARAM_GIT_REPOSITORY
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.Policy.GetGitBranchPolicy.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.Policy.GetGitBranchPolicy.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.Policy.GetGitBranchPolicy.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Git.Policy.GetGitPolicyType">
            <summary>
            Gets one or more Git branch policies supported by the given team project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.Policy.GetGitPolicyType.PolicyType">
            <summary>
            Specifies the display name or ID of the policy type. Wildcards are supported.
            When omitted, all policy types supported by the given team project are returned.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.Policy.GetGitPolicyType.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.Policy.GetGitPolicyType.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.Policy.GetGitPolicyType.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Git.RemoveGitRepository">
            <summary>
            Deletes one or more Git repositories from a team project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.RemoveGitRepository.Repository">
            <summary>
            Specifies the repository to be deleted. Value can be the name or ID of a Git repository, 
            as well as a Microsoft.TeamFoundation.SourceControl.WebApi.GitRepository object representing a Git
            repository.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.RemoveGitRepository.Force">
            <summary>
            HELP_PARAM_FORCE_REMOVE
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.RemoveGitRepository.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.RemoveGitRepository.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.RemoveGitRepository.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Git.RenameGitRepository">
            <summary>
            Renames a Git repository in a team project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.RenameGitRepository.Repository">
            <summary>
            Specifies the repository to be renamed. Value can be the name or ID of a Git repository, 
            as well as a Microsoft.TeamFoundation.SourceControl.WebApi.GitRepository object representing a Git
            repository.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.RenameGitRepository.NewName">
            <summary>
            HELP_PARAM_NEWNAME
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.RenameGitRepository.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.RenameGitRepository.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.RenameGitRepository.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Identity.GetIdentity">
            <summary>
            Gets one or more identities that represents either users or groups in Azure DevOps. 
            This cmdlets resolves legacy identity information for use with older APIs such as the Security APIs
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Identity.GetIdentity.Identity">
            <summary>
            Specifies the user or group to be retrieved. Supported values are: 
            User/group name, email, or ID
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Identity.GetIdentity.QueryMembership">
            <summary>
            Specifies how group membership information should be processed  
            when the returned identity is a group. "Direct" fetches direct members (both users 
            and groups) of the group. "Expanded" expands contained groups recursively and returns 
            their contained users. "None" is the fastest option as it fetches no membership 
            information. When omitted, defaults to Direct.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Identity.GetIdentity.Current">
            <summary>
            Returns an identity representing the user currently logged in to
            the Azure DevOps / TFS instance
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Identity.GetIdentity.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Identity.GetIdentity.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Identity.Group.AddGroupMember">
            <summary>
            Adds group members to an Azure DevOps group.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Identity.Group.AddGroupMember.Member">
            <summary>
            Specifies the member (user or group) to add to the given group.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Identity.Group.AddGroupMember.Group">
            <summary>
            Specifies the group to which the member is added.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Identity.Group.AddGroupMember.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Identity.Group.AddGroupMember.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Identity.Group.GetGroup">
            <summary>
            Gets one or more Azure DevOps groups.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Identity.Group.GetGroup.Group">
            <summary>
            Specifies the group to be retrieved. Supported values are: 
            Group name or ID. Wildcards are supported.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Identity.Group.GetGroup.Scope">
            <summary>
            Specifies the scope under which to search for the group. 
            When omitted, defaults to the Collection scope.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Identity.Group.GetGroup.Recurse">
            <summary>
            Searches recursively for groups in the scopes under the specified scope.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Identity.Group.GetGroup.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Identity.Group.GetGroup.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Identity.Group.GetGroup.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Identity.Group.GetGroupMember">
            <summary>
            Gets the members of a Azure DevOps group
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Identity.Group.GetGroupMember.Group">
            <summary>
            Specifies the group fom which to get its members.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Identity.Group.GetGroupMember.Member">
            <summary>
            Specifies the member (user or group) to get from the given group. Wildcards are supported.
            When omitted, all group members are returned.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Identity.Group.GetGroupMember.Recurse">
            <summary>
            Recursively expands all member groups, returning the users and/or groups contained in them
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Identity.Group.GetGroupMember.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Identity.Group.GetGroupMember.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Identity.Group.NewGroup">
            <summary>
            Creates a new Azure DevOps group.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Identity.Group.NewGroup.Group">
            <summary>
            Specifies the name of the new group.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Identity.Group.NewGroup.Description">
            <summary>
            Specifies a description for the new group.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Identity.Group.NewGroup.Scope">
            <summary>
            Specifies the scope under which to create the group. 
            When omitted, defaults to the Collection scope.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Identity.Group.NewGroup.Passthru">
            <summary>
            HELP_PARAM_PASSTHRU
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Identity.Group.NewGroup.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Identity.Group.NewGroup.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Identity.Group.NewGroup.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Identity.Group.RemoveGroup">
            <summary>
            Removes an Azure DevOps group.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Identity.Group.RemoveGroup.Group">
            <summary>
            Specifies the group to be removed.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Identity.Group.RemoveGroup.Scope">
            <summary>
            Specifies the scope under which to search for the group. 
            When omitted, defaults to the Collection scope.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Identity.Group.RemoveGroup.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Identity.Group.RemoveGroup.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Identity.Group.RemoveGroup.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Identity.Group.RemoveGroupMember">
            <summary>
            Removes a member from an Azure DevOps group.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Identity.Group.RemoveGroupMember.Member">
            <summary>
            Specifies the member (user or group) to remove from the given group.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Identity.Group.RemoveGroupMember.Group">
            <summary>
            Specifies the group from which the member is removed.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Identity.Group.RemoveGroupMember.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Identity.Group.RemoveGroupMember.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Identity.User.GetUser">
            <summary>
            Gets information about one or more Azure DevOps users.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Identity.User.GetUser.User">
            <summary>
            Specifies the user or group to be retrieved. Supported values are: 
            User/group name, email, or ID
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Identity.User.GetUser.Current">
            <summary>
            Returns an identity representing the user currently logged in to
            the Azure DevOps / TFS instance
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Identity.User.GetUser.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Identity.User.GetUser.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Organization.ConnectOrganization">
            <summary>
            Connects to an Azure DevOps organization or a TFS Team Project Collection. 
            </summary>
            <remarks>
            The Connect-TfsOrganization cmdlet connects to an Azure DevOps organization
            or a TFS Team Project Collection.
            
            That connection can be later reused by other TfsCmdlets commands until it's closed 
            by a call to Disconnect-TfsOrganization.
            </remarks>
            <notes>
            Most cmdlets in the TfsCmdlets module require a Collection object to be provided via their 
            -Collection argument in order to access a TFS instance. Those cmdlets will use the connection 
            opened by Connect-TfsOrganization as their "default connection".
            
            In other words, TFS cmdlets (e.g. New-TfsWorkItem) that have a -Collection argument will use the connection 
            provided by Connect-TfsOrganization by default.
            </notes>
            <example>
              <code>Connect-TfsOrganization -Collection http://tfs:8080/tfs/DefaultCollection</code>
              <para>Connects to a collection called "DefaultCollection" in a TF server called "tfs" 
                    using the cached credentials of the logged-on user</para>
            </example>
            <example>
              <code>Connect-TfsOrganization -Collection http://tfs:8080/tfs/DefaultCollection -Interactive</code>
              <para>Connects to a collection called "DefaultCollection" in a Team Foundation server called 
                    "tfs", firstly prompting the user for credentials (it ignores the cached credentials for 
                    the currently logged-in user). It's equivalent to the command: `Connect-TfsOrganization 
                    -Collection http://tfs:8080/tfs/DefaultCollection -Credential (Get-TfsCredential -Interactive)`
              </para>
            </example>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Organization.ConnectOrganization.Organization">
            <summary>
             Specifies the URL to the Azure DevOps Organization or Team Project Collection to connect to, 
             a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. 
             You can also connect to an Azure DevOps Services organization by simply providing its name 
             instead of the full URL. 
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Organization.ConnectOrganization.Passthru">
            <summary>
            HELP_PARAM_PASSTHRU
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Organization.ConnectOrganization.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Organization.ConnectOrganization.Cached">
            <summary>
            HELP_PARAM_CACHED_CREDENTIAL
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Organization.ConnectOrganization.UserName">
            <summary>
            HELP_PARAM_USER_NAME
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Organization.ConnectOrganization.Password">
            <summary>
            HELP_PARAM_PASSWORD
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Organization.ConnectOrganization.Credential">
            <summary>
            HELP_PARAM_CREDENTIAL
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Organization.ConnectOrganization.PersonalAccessToken">
            <summary>
            HELP_PARAM_PERSONAL_ACCESS_TOKEN
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Organization.ConnectOrganization.Interactive">
            <summary>
            HELP_PARAM_INTERACTIVE
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Organization.DisconnectOrganization">
            <summary>
            Disconnects from the currently connected Azure DevOps organization.
            </summary>
            <remarks>
            The Disconnect-TfsOrganization cmdlet removes the connection previously set by its 
            counterpart Connect-TfsOrganization. Therefore, cmdlets relying on a "default organization/collection" 
            as provided by "Get-TfsOrganization -Current" will no longer work after a call to 
            this cmdlet, unless their -Collection argument is provided or a new call to 
            Connect-TfsTeam is made.
            </remarks>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Organization.GetOrganization">
            <summary>
            Gets one of more team project collections (organizations in Azure DevOps).
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Organization.GetOrganization.Organization">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Organization.GetOrganization.Current">
            <summary>
            Returns the organization specified in the last call to 
            Connect-TfsOrganization (i.e. the "current" organization)
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Organization.GetOrganization.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Organization.GetOrganization.Cached">
            <summary>
            HELP_PARAM_CACHED_CREDENTIAL
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Organization.GetOrganization.UserName">
            <summary>
            HELP_PARAM_USER_NAME
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Organization.GetOrganization.Password">
            <summary>
            HELP_PARAM_PASSWORD
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Organization.GetOrganization.Credential">
            <summary>
            HELP_PARAM_CREDENTIAL
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Organization.GetOrganization.PersonalAccessToken">
            <summary>
            HELP_PARAM_PERSONAL_ACCESS_TOKEN
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Organization.GetOrganization.Interactive">
            <summary>
            HELP_PARAM_INTERACTIVE
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Pipeline.Build.Definition.DisableBuildDefinition">
            <summary>
            Disables a build/pipeline definition.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.Definition.DisableBuildDefinition.Definition">
            <summary>
            Specifies the pipeline name/path.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.Definition.DisableBuildDefinition.Passthru">
            <summary>
            HELP_PARAM_PASSTHRU
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.Definition.DisableBuildDefinition.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.Definition.DisableBuildDefinition.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.Definition.DisableBuildDefinition.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Pipeline.Build.Definition.EnableBuildDefinition">
            <summary>
            Enables a previously disabled build/pipeline definition.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.Definition.EnableBuildDefinition.Definition">
            <summary>
            Specifies the pipeline name/path.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.Definition.EnableBuildDefinition.Passthru">
            <summary>
            HELP_PARAM_PASSTHRU
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.Definition.EnableBuildDefinition.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.Definition.EnableBuildDefinition.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.Definition.EnableBuildDefinition.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Pipeline.Build.Definition.GetBuildDefinition">
            <summary>
            Gets one or more build/pipeline definitions in a team project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.Definition.GetBuildDefinition.Definition">
            <summary>
            Specifies the pipeline path. Wildcards are supported. 
            When omitted, all pipelines definitions in the supplied team project are returned.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.Definition.GetBuildDefinition.QueryOrder">
            <summary>
            Specifies the query order. When omitted, defaults to None.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.Definition.GetBuildDefinition.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.Definition.GetBuildDefinition.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.Definition.GetBuildDefinition.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Pipeline.Build.Definition.ResumeBuildDefinition">
            <summary>
            Resumes (unpauses) a previously suspended build/pipeline definition.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.Definition.ResumeBuildDefinition.Definition">
            <summary>
            Specifies the pipeline name/path.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.Definition.ResumeBuildDefinition.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.Definition.ResumeBuildDefinition.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.Definition.ResumeBuildDefinition.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Pipeline.Build.Definition.SuspendBuildDefinition">
            <summary>
            Suspends (pauses) a build/pipeline definition.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.Definition.SuspendBuildDefinition.Definition">
            <summary>
            Specifies the pipeline name/path.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.Definition.SuspendBuildDefinition.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.Definition.SuspendBuildDefinition.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.Definition.SuspendBuildDefinition.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Pipeline.Build.Folder.GetBuildDefinitionFolder">
            <summary>
            Gets one or more build/pipeline definition folders in a team project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.Folder.GetBuildDefinitionFolder.Folder">
            <summary>
            Specifies the folder path. Wildcards are supported. 
            When omitted, all build/pipeline folders in the supplied team project are returned.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.Folder.GetBuildDefinitionFolder.QueryOrder">
            <summary>
            Specifies the query order. When omitted, defaults to None.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.Folder.GetBuildDefinitionFolder.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.Folder.GetBuildDefinitionFolder.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.Folder.GetBuildDefinitionFolder.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Pipeline.Build.Folder.NewBuildDefinitionFolder">
            <summary>
            Creates a new build/pipeline definition folder
            </summary>
            <remarks>
            Folders are created recursively - i.e. when specifying a path like '\foo\bar\baz', if any of 
            the parent folders (foo, foo\bar) does not exist, it is automatically created before creating any
            child folders.
            </remarks>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.Folder.NewBuildDefinitionFolder.Folder">
            <summary>
            Specifies the path of the new pipeline/build folder, including its name, 
            separated by backslashes (\).
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.Folder.NewBuildDefinitionFolder.Description">
            <summary>
            Specifies the description of the new build/pipeline folder.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.Folder.NewBuildDefinitionFolder.Passthru">
            <summary>
            HELP_PARAM_PASSTHRU
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.Folder.NewBuildDefinitionFolder.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.Folder.NewBuildDefinitionFolder.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.Folder.NewBuildDefinitionFolder.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Pipeline.Build.Folder.RemoveBuildDefinitionFolder">
            <summary>
            Deletes one or more build/pipeline definition folders.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.Folder.RemoveBuildDefinitionFolder.Folder">
            <summary>
            Specifies the path of the pipeline/build folder to delete, including its name, 
            separated by backslashes (\). Wildcards are supperted.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.Folder.RemoveBuildDefinitionFolder.Recurse">
            <summary>
            Removes folders recursively. When omitted, folders with subfolders cannot be deleted.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.Folder.RemoveBuildDefinitionFolder.Force">
            <summary>
            Forces the exclusion of folders containing build/pipelines definitions. When omitted, 
            only empty folders can be deleted.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.Folder.RemoveBuildDefinitionFolder.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.Folder.RemoveBuildDefinitionFolder.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.Folder.RemoveBuildDefinitionFolder.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Pipeline.Build.StartBuild">
            <summary>
            Gets one or more build/pipeline definitions in a team project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.StartBuild.Definition">
            <summary>
            Specifies the pipeline to start.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.StartBuild.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.StartBuild.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.StartBuild.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Pipeline.ReleaseManagement.GetReleaseDefinition">
            <summary>
            Gets information from one or more release definitions in a team project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.ReleaseManagement.GetReleaseDefinition.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.ReleaseManagement.GetReleaseDefinition.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.ReleaseManagement.GetReleaseDefinition.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Pipeline.ReleaseManagement.GetReleaseDefinitionFolder">
            <summary>
            Gets one or more Release/pipeline definition folders in a team project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.ReleaseManagement.GetReleaseDefinitionFolder.Folder">
            <summary>
            Specifies the folder path. Wildcards are supported. 
            When omitted, all Release/pipeline folders in the supplied team project are returned.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.ReleaseManagement.GetReleaseDefinitionFolder.QueryOrder">
            <summary>
            Specifies the query order. When omitted, defaults to None.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.ReleaseManagement.GetReleaseDefinitionFolder.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.ReleaseManagement.GetReleaseDefinitionFolder.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.ReleaseManagement.GetReleaseDefinitionFolder.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Pipeline.ReleaseManagement.NewReleaseDefinitionFolder">
            <summary>
            Creates a new release definition folder.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.ReleaseManagement.NewReleaseDefinitionFolder.Folder">
            <summary>
            Specifies the folder path. Wildcards are supported. 
            When omitted, all Release/pipeline folders in the supplied team project are returned.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.ReleaseManagement.NewReleaseDefinitionFolder.Description">
            <summary>
            Specifies the description of the new build/pipeline folder.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.ReleaseManagement.NewReleaseDefinitionFolder.Passthru">
            <summary>
            HELP_PARAM_PASSTHRU
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.ReleaseManagement.NewReleaseDefinitionFolder.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.ReleaseManagement.NewReleaseDefinitionFolder.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.ReleaseManagement.NewReleaseDefinitionFolder.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Pipeline.ReleaseManagement.RemoveReleaseDefinitionFolder">
            <summary>
            Deletes one or more release definition folders.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.ReleaseManagement.RemoveReleaseDefinitionFolder.Folder">
            <summary>
            Specifies the path of the release folder to delete. Wildcards are supported.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.ReleaseManagement.RemoveReleaseDefinitionFolder.Recurse">
            <summary>
            Removes folders recursively. When omitted, folders with subfolders cannot be deleted.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.ReleaseManagement.RemoveReleaseDefinitionFolder.Force">
            <summary>
            Forces the exclusion of folders containing release definitions definitions. When omitted, 
            only empty folders can be deleted.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.ReleaseManagement.RemoveReleaseDefinitionFolder.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.ReleaseManagement.RemoveReleaseDefinitionFolder.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.ReleaseManagement.RemoveReleaseDefinitionFolder.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.ProcessTemplate.ExportProcessTemplate">
            <summary>
            Exports a XML-based process template definition to disk.
            </summary>
            <remarks>
            This cmdlet offers a functional replacement to the "Export Process Template" feature found 
            in Team Explorer. All files pertaining to the specified process template (work item defininitons, 
            reports, saved queries, process configuration and so on) are downloaded from the given 
            Team Project Collection and saved in a local directory, preserving the directory structure 
            required to later re-import it. This is specially handy to do small changes to a process template 
            or to create a new process template based on an existing one.
            </remarks>
            <example>
              <code>Export-TfsProcessTemplate -Process "Scrum" -DestinationPath C:\PT -Collection http://vsalm:8080/tfs/DefaultCollection</code>
              <para>Exports the Scrum process template from the DefaultCollection project collection in the VSALM server, saving the template files to the C:\PT\Scrum directory in the local computer.</para>
            </example>
            <example>
              <code>Export-TfsProcessTemplate -Process "Scrum" -DestinationPath C:\PT -Collection http://vsalm:8080/tfs/DefaultCollection -NewName "MyScrum" -NewDescription "A customized version of the Scrum process template"</code>
              <para>Exports the Scrum process template from the DefaultCollection project collection in the VSALM server, saving the template files to the C:\PT\MyScrum directory in the local computer. Notice that the process template is being renamed from Scrum to MyScrum, so that it can be later reimported as a new process template instead of overwriting the original one.</para>
            </example>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ProcessTemplate.ExportProcessTemplate.ProcessTemplate">
            <summary>
            Specifies the name of the process template(s) to be exported. Wildcards are supported. 
            When omitted, all process templates in the given project collection are exported.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ProcessTemplate.ExportProcessTemplate.DestinationPath">
            <summary>
            Path to the target directory where the exported process template (and related files) will be saved. 
            A folder with the process template name will be created under this path. When omitted, templates  
            are exported in the current directory.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ProcessTemplate.ExportProcessTemplate.NewName">
            <summary>
            Saves the exported process template with a new name. Useful when exporting a base template 
            which will be used as a basis for a new process template. When omitted, the original name is used.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ProcessTemplate.ExportProcessTemplate.NewDescription">
            <summary>
            Saves the exported process template with a new description. Useful when exporting a base template 
            which will be used as a basis for a new process template.  When omitted, the original description is used.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ProcessTemplate.ExportProcessTemplate.Force">
            <summary>
            Allows the cmdlet to overwrite an existing destination folder.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ProcessTemplate.ExportProcessTemplate.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ProcessTemplate.ExportProcessTemplate.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.ProcessTemplate.GetProcessTemplate">
            <summary>
            Gets information from one or more process templates.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ProcessTemplate.GetProcessTemplate.ProcessTemplate">
            <summary>
            Specifies the name of the process template(s) to be returned. Wildcards are supported. 
            When omitted, all process templates in the given project collection are returned.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ProcessTemplate.GetProcessTemplate.Default">
            <summary>
            Returns the default process template in the given orgnization / project collection.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ProcessTemplate.GetProcessTemplate.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ProcessTemplate.GetProcessTemplate.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.ProcessTemplate.ImportProcessTemplate">
            <summary>
            Imports a process template definition from disk.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ProcessTemplate.ImportProcessTemplate.Path">
            <summary>
            Specifies the folder containing the process template to be imported. This folder must contain 
            the file ProcessTemplate.xml
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ProcessTemplate.ImportProcessTemplate.State">
            <summary>
            Specifies the state of the template after it is imported. When set to Invisible, the process template
            will not be listed in the server UI.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ProcessTemplate.ImportProcessTemplate.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ProcessTemplate.ImportProcessTemplate.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.ProcessTemplate.NewProcessTemplate">
            <summary>
            Creates a new inherited process.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ProcessTemplate.NewProcessTemplate.ProcessTemplate">
            <summary>
            Specifies the name of the process to create.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ProcessTemplate.NewProcessTemplate.Description">
            <summary>
            Specifies the description of the new process.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ProcessTemplate.NewProcessTemplate.ReferenceName">
            <summary>
            Specifies the reference name of the new process. When omitted, a random name 
            will be automatically generated and assigned by the server.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ProcessTemplate.NewProcessTemplate.Parent">
            <summary>
            Specifies the name of the parent process from which the new process will inherit.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ProcessTemplate.NewProcessTemplate.Force">
            <summary>
            Allows the cmdlet to overwrite an existing process.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ProcessTemplate.NewProcessTemplate.Passthru">
            <summary>
            HELP_PARAM_PASSTHRU
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ProcessTemplate.NewProcessTemplate.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ProcessTemplate.NewProcessTemplate.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.RestApi.GetRestClient">
            <summary>
            Gets an Azure DevOps HTTP Client object instance.
            </summary>
            <remarks>
            Connection objects (Microsoft.VisualStudio.Services.Client.VssConnection in PowerShell Core, 
            Microsoft.TeamFoundation.Client.TfsTeamProjectCollection in Windows PowerShell) provide access to 
            many HTTP client objects such as Microsoft.TeamFoundation.WorkItemTracking.WebApi.WorkItemTrackingHttpClient 
            that wrap many of the REST APIs exposed by Azure DevOps. Those clients inherit the authentication 
            information supplied by their parent connection object and can be used as a more convenient mechanism 
            to issue API calls.
            </remarks>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.RestApi.GetRestClient.TypeName">
            <summary>
            Specifies the full type name (optionally including its assembly name) of the HTTP Client 
            class to return.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.RestApi.GetRestClient.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.RestApi.GetRestClient.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.RestApi.InvokeRestApi">
            <summary>
            Invoke an Azure DevOps REST API.
            </summary>
            <remarks>
            Invoke-TfsRestApi can automatically parse an example URL from 
            https://docs.microsoft.com/en-us/rest/api/azure/devops/ and replace its various tokens 
            (such as {organization}, {project} and {team}) as long as collection / project / team 
            information are available via either the their respective arguments in this command or the 
            corresponding Connect-Tfs* cmdlet. HTTP method and API version are also automatically extracted 
            from the supplied example, when available.
            </remarks>
            <example>
              <code>Invoke-TfsRestApi -Method GET -Path /_apis/projects -ApiVersion 4.1 -Collection DefaultCollection</code>
              <para>Calls a REST API that lists all team projects in a TFS collection named DefaultCollection</para>
            </example>
            <example>
              <code>Invoke-TfsRestApi 'GET https://extmgmt.dev.azure.com/{organization}/_apis/extensionmanagement/installedextensions?api-version=5.1-preview.1'</code>
              <para>Calls the API described by an example extracted from the docs.microsoft.com web site. 
                HTTP method, host name and API version are all set based on the supplied values; 
                Tokens {organization}, {project} and {team} are properly replaced with the corresponding 
                values provided by the current connection context (via previous calls to 
                Connect-TfsTeamProjectCollection, Connect-TfsTeamProject and/or Connect-TfsTeam).</para>
            </example>
            <example>
              <code>Invoke-TfsRestApi 'GET https://{instance}/{collection}/_apis/process/processes?api-version=4.1' -Collection http://vsalm:8080/tfs/DefaultCollection</code>
              <para>Calls an API in a TFS instance, parsing the example provided by the docs.microsoft.com web site.</para>
            </example>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.RestApi.InvokeRestApi.Path">
            <summary>
            Specifies the path of the REST API to call. Tipically it is the portion of the URL after 
            the name of the collection/organization, i.e. in the URL 
            https://dev.azure.com/{organization}/_apis/projects?api-version=5.1 the path is 
            "/_apis/projects".
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.RestApi.InvokeRestApi.Method">
            <summary>
            Specifies the HTTP method to call the API endpoint. When omitted, defaults to "GET".
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.RestApi.InvokeRestApi.Body">
            <summary>
            Specifies the request body to send to the API endpoint. Tipically contains the JSON payload 
            required by the API.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.RestApi.InvokeRestApi.RequestContentType">
            <summary>
             Specifies the request body content type to send to the API. When omitted, defaults to
            "application/json".
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.RestApi.InvokeRestApi.ResponseContentType">
            <summary>
             Specifies the response body content type returned by the API. When omitted, defaults to
            "application/json".
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.RestApi.InvokeRestApi.AdditionalHeaders">
            <summary>
            Specifies a hashtable with additional HTTP headers to send to the API endpoint.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.RestApi.InvokeRestApi.QueryParameters">
            <summary>
            Specifies a hashtable with additional query parameters to send to the API endpoint.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.RestApi.InvokeRestApi.ApiVersion">
            <summary>
            Specifies the desired API version. When omitted, defaults to "4.1".
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.RestApi.InvokeRestApi.UseHost">
            <summary>
            Specifies an alternate host name for APIs not hosted in "dev.azure.com", 
            e.g. "vsaex.dev.azure.com" or "vssps.dev.azure.com".
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.RestApi.InvokeRestApi.NoAutoUnwrap">
            <summary>
            Prevents the automatic expansion (unwrapping) of the 'value' property in the response JSON.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.RestApi.InvokeRestApi.Raw">
            <summary>
            Returns the API response as an unparsed string. If omitted, JSON responses will be 
            parsed, converted and returned as objects (via ConvertFrom-Json).
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.RestApi.InvokeRestApi.Destination">
            <summary>
            Saves the API response to a file. If omitted, the response will be written to the stardard output stream.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.RestApi.InvokeRestApi.AsTask">
            <summary>
            Returns the System.Threading.Tasks.Task object used to issue the asynchronous call to the API. 
            The caller is responsible for finishing the asynchronous call by e.g. accessing the Result property.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.RestApi.InvokeRestApi.Team">
            <summary>
            HELP_PARAM_TEAM
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.RestApi.InvokeRestApi.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.RestApi.InvokeRestApi.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.RestApi.InvokeRestApi.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.ServiceHook.GetServiceHookConsumer">
            <summary>
            Gets one or more service hook consumers.
            </summary>
            <remarks>
            Service hook consumers are the services that can consume (receive) notifications triggered by 
            Azure DevOps. Examples of consumers available out-of-box with Azure DevOps are Microsoft Teams, 
            Slack, Trello ou the generic WebHook consumer. Use this cmdlet to list the available consumers and get 
            the ID of the desired one to be able to manage service hook subscriptions.
            </remarks>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ServiceHook.GetServiceHookConsumer.Consumer">
            <summary>
            Specifies the name or ID of the service hook consumer to return. Wildcards are supported. 
            When omitted, all service hook consumers registered in the given project collection/organization 
            are returned.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ServiceHook.GetServiceHookConsumer.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ServiceHook.GetServiceHookConsumer.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.ServiceHook.GetServiceHookNotificationHistory">
            <summary>
            Gets the notification history for a given service hook subscription
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ServiceHook.GetServiceHookNotificationHistory.Subscription">
            <summary>
            Specifies the subscription to get the notification history from.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ServiceHook.GetServiceHookNotificationHistory.From">
            <summary>
            Specifies the beginning of a date interval to filter notifications on.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ServiceHook.GetServiceHookNotificationHistory.To">
            <summary>
            Specifies the end of a date interval to filter notifications on.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ServiceHook.GetServiceHookNotificationHistory.Status">
            <summary>
            Specifies the notification status to filter on.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ServiceHook.GetServiceHookNotificationHistory.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ServiceHook.GetServiceHookNotificationHistory.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.ServiceHook.GetServiceHookPublisher">
            <summary>
            Gets one or more service hook publishers.
            </summary>
            <remarks>
            Service hook publishers are the components inside of Azure DevOps that can publish (send) notifications triggered by 
            event such as "work item changed" or "build queued". Use this cmdlet to list the available publishers and get 
            the ID of the desired one to be able to manage service hook subscriptions.
            </remarks>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ServiceHook.GetServiceHookPublisher.Publisher">
            <summary>
            Specifies the name or ID of the service hook publisher to return. Wildcards are supported. 
            When omitted, returns all service hook consumers currently supported the current by Azure DevOps organization / 
            TFS collection.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ServiceHook.GetServiceHookPublisher.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ServiceHook.GetServiceHookPublisher.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.ServiceHook.GetServiceHookSubscription">
            <summary>
            Gets one or more service hook subscriptions
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ServiceHook.GetServiceHookSubscription.Subscription">
            <summary>
            Specifies the name ("action description") of the subscription. Wildcards are supported. 
            When omitted, returns all service hook subscriptions in the given 
            team project collection.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ServiceHook.GetServiceHookSubscription.Publisher">
            <summary>
            Specifies the name or ID of the service hook publisher to filter subscriptions by.
            When omitted, returns all subscriptions regardless of their publishers.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ServiceHook.GetServiceHookSubscription.Consumer">
            <summary>
            Specifies the name or ID of the service hook consumer to filter subscriptions by. 
            When omitted, returns all subscriptions regardless of their consumers.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ServiceHook.GetServiceHookSubscription.EventType">
            <summary>
            Specifies the event type to filter subscriptions by. 
            When omitted, returns all subscriptions regardless of their event types.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ServiceHook.GetServiceHookSubscription.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ServiceHook.GetServiceHookSubscription.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Shell.EnterShell">
            <summary>
            Activates the Azure DevOps Shell
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Shell.EnterShell.WindowTitle">
            <summary>
            Specifies the shell window title. If omitted, defaults to "Azure DevOps Shell".
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Shell.EnterShell.DoNotClearHost">
            <summary>
            Do not clear the host screen when activating the Azure DevOps Shell. When set, the
            prompt is enabled without clearing the screen.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Shell.EnterShell.NoLogo">
            <summary>
            Do not show the version banner when activating the Azure DevOps Shell.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Shell.EnterShell.NoProfile">
            <summary>
            Do not load the user profile TfsCmdlets.Profile.ps1 (if present) when activating the Azure DevOps Shell.
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Shell.ExitShell">
            <summary>
            Deactivates the Azure DevOps Shell
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.TeamProjectCollection.ConnectTeamProjectCollection">
            <summary>
            Connects to a TFS team project collection or Azure DevOps organization. 
            </summary>
            <remarks>
            The Connect-TfsTeamProjectCollection cmdlet connects to a TFS Team Project Collection or 
            Azure DevOps organization.
            
            That connection can be later reused by other TfsCmdlets commands until it's closed 
            by a call to Disconnect-TfsTeamProjectCollection.
            </remarks>
            <notes>
            Most cmdlets in the TfsCmdlets module require a Collection object to be provided via their 
            -Collection argument in order to access a TFS instance. Those cmdlets will use the connection 
            opened by Connect-TfsTeamProjectCollection as their "default connection".
            
            In other words, TFS cmdlets (e.g. New-TfsWorkItem) that have a -Collection argument will use the connection 
            provided by Connect-TfsTeamProjectCollection by default.
            </notes>
            <example>
              <code>Connect-TfsTeamProjectCollection -Collection http://tfs:8080/tfs/DefaultCollection</code>
              <para>Connects to a collection called "DefaultCollection" in a TF server called "tfs" 
                    using the cached credentials of the logged-on user</para>
            </example>
            <example>
              <code>Connect-TfsTeamProjectCollection -Collection http://tfs:8080/tfs/DefaultCollection -Interactive</code>
              <para>Connects to a collection called "DefaultCollection" in a Team Foundation server called 
                    "tfs", firstly prompting the user for credentials (it ignores the cached credentials for 
                    the currently logged-in user). It's equivalent to the command: `Connect-TfsTeamProjectCollection 
                    -Collection http://tfs:8080/tfs/DefaultCollection -Credential (Get-TfsCredential -Interactive)`
              </para>
            </example>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProjectCollection.ConnectTeamProjectCollection.Collection">
            <summary>
             Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, 
             a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. 
             You can also connect to an Azure DevOps Services organizations by simply providing its name 
             instead of the full URL. 
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProjectCollection.ConnectTeamProjectCollection.Passthru">
            <summary>
            HELP_PARAM_PASSTHRU
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProjectCollection.ConnectTeamProjectCollection.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProjectCollection.ConnectTeamProjectCollection.Cached">
            <summary>
            HELP_PARAM_CACHED_CREDENTIAL
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProjectCollection.ConnectTeamProjectCollection.UserName">
            <summary>
            HELP_PARAM_USER_NAME
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProjectCollection.ConnectTeamProjectCollection.Password">
            <summary>
            HELP_PARAM_PASSWORD
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProjectCollection.ConnectTeamProjectCollection.Credential">
            <summary>
            HELP_PARAM_CREDENTIAL
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProjectCollection.ConnectTeamProjectCollection.PersonalAccessToken">
            <summary>
            HELP_PARAM_PERSONAL_ACCESS_TOKEN
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProjectCollection.ConnectTeamProjectCollection.Interactive">
            <summary>
            HELP_PARAM_INTERACTIVE
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.TeamProjectCollection.DisconnectTeamProjectCollection">
            <summary>
            Disconnects from the currently connected TFS team project collection or Azure DevOps organization.
            </summary>
            <remarks>
            The Disconnect-TfsTeamProjectCollection cmdlet removes the connection previously set by its 
            counterpart Connect-TfsTeamProjectCollection. Therefore, cmdlets relying on a "default collection" 
            as provided by "Get-TfsTeamProjectCollection -Current" will no longer work after a call to 
            this cmdlet, unless their -Collection argument is provided or a new call to 
            Connect-TfsTeam is made.
            </remarks>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.TeamProjectCollection.GetTeamProjectCollection">
            <summary>
            Gets one of more team project collections (organizations in Azure DevOps).
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProjectCollection.GetTeamProjectCollection.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProjectCollection.GetTeamProjectCollection.Current">
            <summary>
            Returns the team project collection specified in the last call to 
            Connect-TfsTeamProjectCollection (i.e. the "current" project collection)
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProjectCollection.GetTeamProjectCollection.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProjectCollection.GetTeamProjectCollection.Cached">
            <summary>
            HELP_PARAM_CACHED_CREDENTIAL
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProjectCollection.GetTeamProjectCollection.UserName">
            <summary>
            HELP_PARAM_USER_NAME
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProjectCollection.GetTeamProjectCollection.Password">
            <summary>
            HELP_PARAM_PASSWORD
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProjectCollection.GetTeamProjectCollection.Credential">
            <summary>
            HELP_PARAM_CREDENTIAL
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProjectCollection.GetTeamProjectCollection.PersonalAccessToken">
            <summary>
            HELP_PARAM_PERSONAL_ACCESS_TOKEN
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProjectCollection.GetTeamProjectCollection.Interactive">
            <summary>
            HELP_PARAM_INTERACTIVE
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.TeamProjectCollection.NewTeamProjectCollection">
            <summary>
            Creates a new team project collection.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProjectCollection.NewTeamProjectCollection.Passthru">
            <summary>
            HELP_PARAM_PASSTHRU
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProjectCollection.NewTeamProjectCollection.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.TeamProjectCollection.RemoveTeamProjectCollection">
            <summary>
            Deletes a team project collection.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProjectCollection.RemoveTeamProjectCollection.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.TeamProject.Avatar.ExportTeamProjectAvatar">
            <summary>
            Exports the current avatar (image) of the specified team project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.Avatar.ExportTeamProjectAvatar.Path">
            <summary>
            Specifies the path of the file where the avatar image will be saved. 
            When omitted, the image will be saved to the current directory as &lt;team-project-name&gt;.png.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.Avatar.ExportTeamProjectAvatar.Force">
            <summary>
            HELP_PARAM_FORCE_OVERWRITE
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.Avatar.ExportTeamProjectAvatar.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.Avatar.ExportTeamProjectAvatar.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.Avatar.ExportTeamProjectAvatar.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.TeamProject.Avatar.ImportTeamProjectAvatar">
            <summary>
            Imports and sets a new team project avatar (image).
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.Avatar.ImportTeamProjectAvatar.Path">
            <summary>
            Specifies the path of the image file to import. 
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.Avatar.ImportTeamProjectAvatar.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.Avatar.ImportTeamProjectAvatar.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.Avatar.ImportTeamProjectAvatar.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.TeamProject.Avatar.RemoveTeamProjectAvatar">
            <summary>
            Removes the team project avatar, resetting it to the default.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.Avatar.RemoveTeamProjectAvatar.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.Avatar.RemoveTeamProjectAvatar.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.Avatar.RemoveTeamProjectAvatar.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.TeamProject.ConnectTeamProject">
            <summary>
            Connects to a Team Project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.ConnectTeamProject.Project">
            <summary>
            Specifies the name of the Team Project, its ID (a GUID), or a 
            Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.ConnectTeamProject.Passthru">
            <summary>
            HELP_PARAM_PASSTHRU
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.ConnectTeamProject.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.ConnectTeamProject.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.ConnectTeamProject.Cached">
            <summary>
            HELP_PARAM_CACHED_CREDENTIAL
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.ConnectTeamProject.UserName">
            <summary>
            HELP_PARAM_USER_NAME
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.ConnectTeamProject.Password">
            <summary>
            HELP_PARAM_PASSWORD
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.ConnectTeamProject.Credential">
            <summary>
            HELP_PARAM_CREDENTIAL
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.ConnectTeamProject.PersonalAccessToken">
            <summary>
            HELP_PARAM_PERSONAL_ACCESS_TOKEN
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.ConnectTeamProject.Interactive">
            <summary>
            HELP_PARAM_INTERACTIVE
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.TeamProject.DisconnectTeamProject">
            <summary>
            Disconnects from the currently connected team project.
            </summary>
            <remarks>
            The Disconnect-TfsTeamProject cmdlet removes the connection previously set by its 
            counterpart Connect-TfsTeamProject. Therefore, cmdlets relying on a "default team project" 
            as provided by "Get-TfsTeamProject -Current" will no longer work after a call to 
            this cmdlet, unless their -Project argument is provided or a new call to 
            Connect-TfsTeamProject is made.
            </remarks>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.TeamProject.GetTeamProject">
            <summary>
            Gets information about one or more team projects.
            </summary>
            <remarks>
            The Get-TfsTeamProject cmdlets gets one or more Team Project objects 
            (an instance of Microsoft.TeamFoundation.Core.WebApi.TeamProject) from the supplied 
            Team Project Collection.
            </remarks>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.GetTeamProject.Project">
            <summary>
            Specifies the name of a Team Project. Wildcards are supported. 
            When omitted, all team projects in the supplied collection are returned.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.GetTeamProject.Deleted">
            <summary>
            Lists deleted team projects present in the "recycle bin"
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.GetTeamProject.Process">
            <summary>
            Returns only those team projects matching the specified process template(s).
            Wildcards are supported. When omitted returns all team projects, regardless of process template.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.GetTeamProject.IncludeDetails">
            <summary>
            Includes details about the team projects, such as the process template name and other properties.
            Specifying this argument signficantly increases the time it takes to complete the operation.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.GetTeamProject.Current">
            <summary>
            Returns the team project specified in the last call to Connect-TfsTeamProject 
            (i.e. the "current" team project)
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.GetTeamProject.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.GetTeamProject.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.GetTeamProject.Cached">
            <summary>
            HELP_PARAM_CACHED_CREDENTIAL
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.GetTeamProject.UserName">
            <summary>
            HELP_PARAM_USER_NAME
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.GetTeamProject.Password">
            <summary>
            HELP_PARAM_PASSWORD
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.GetTeamProject.Credential">
            <summary>
            HELP_PARAM_CREDENTIAL
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.GetTeamProject.PersonalAccessToken">
            <summary>
            HELP_PARAM_PERSONAL_ACCESS_TOKEN
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.GetTeamProject.Interactive">
            <summary>
            HELP_PARAM_INTERACTIVE
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.TeamProject.Member.GetTeamProjectMember">
            <summary>
            Gets the members of a team project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.Member.GetTeamProjectMember.Member">
            <summary>
            Specifies the name of a team project member. Wildcards are supported. 
            When omitted, all team project members are returned.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.Member.GetTeamProjectMember.AsIdentity">
            <summary>
            Returns the members as fully resolved <see cref="T:Microsoft.VisualStudio.Services.Identity.Identity"/> objects.
            When omitted, it returns only the name, ID and email of the users.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.Member.GetTeamProjectMember.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.Member.GetTeamProjectMember.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.Member.GetTeamProjectMember.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.TeamProject.NewTeamProject">
            <summary>
            Creates a new team project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.NewTeamProject.Project">
            <summary>
             Specifies the name of the new team project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.NewTeamProject.Description">
            <summary>
            Specifies a description for the new team project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.NewTeamProject.SourceControl">
            <summary>
            Specifies the source control type to be provisioned initially with the team project. 
            Supported types are "Git" and "Tfvc".
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.NewTeamProject.ProcessTemplate">
            <summary>
            Specifies the process template on which the new team project is based. 
            Supported values are the process name or an instance of the
            Microsoft.TeamFoundation.Core.WebApi.Process class.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.NewTeamProject.Passthru">
            <summary>
            HELP_PARAM_PASSTHRU
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.NewTeamProject.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.NewTeamProject.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.TeamProject.RemoveTeamProject">
            <summary>
            Deletes one or more team projects. 
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.RemoveTeamProject.Project">
            <summary>
            Specifies the name of a Team Project to delete. Wildcards are supported.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.RemoveTeamProject.Hard">
            <summary>
            Deletes the team project permanently. When omitted, the team project is moved to a 
            "recycle bin" and can be recovered either via UI or by using Undo-TfsTeamProjectRemoval.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.RemoveTeamProject.Force">
            <summary>
            HELP_PARAM_FORCE_REMOVE
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.RemoveTeamProject.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.RemoveTeamProject.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.TeamProject.RenameTeamProject">
            <summary>
            Renames a team project. 
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.RenameTeamProject.Project">
            <summary>
            Specifies the name of a Team Project to rename.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.RenameTeamProject.Force">
            <summary>
            Forces the renaming of the team project. When omitted, the command prompts for 
            confirmation prior to renaming the team project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.RenameTeamProject.NewName">
            <summary>
            HELP_PARAM_NEWNAME
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.RenameTeamProject.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.RenameTeamProject.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.TeamProject.SetTeamProject">
            <summary>
            Changes the details of a team project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.SetTeamProject.Project">
            <summary>
            Specifies the name of the Team Project. 
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.SetTeamProject.Description">
            <summary>
            Specifies the description of the team project.
            To remove a previously set description, pass a blank string ('') to this argument.
            </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 either $null or a blank string ('') to this argument.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.SetTeamProject.Passthru">
            <summary>
            HELP_PARAM_PASSTHRU
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.SetTeamProject.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.SetTeamProject.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.TeamProject.UndoTeamProjectRemoval">
            <summary>
            Undeletes one or more team projects. 
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.UndoTeamProjectRemoval.Project">
            <summary>
            Specifies the name of the Team Project to undelete.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.UndoTeamProjectRemoval.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.UndoTeamProjectRemoval.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Team.Backlog.GetTeamBacklogLevel">
            <summary>
            Gets information about one or more backlog levels of a given team.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.Backlog.GetTeamBacklogLevel.Backlog">
            <summary>
            Specifies one or more backlog level configurations to be returned. Valid values 
            are the name (e.g. "Stories") or the ID (e.g. "Microsoft.RequirementCategory") of the 
            backlog level to return. Wilcards are supported. When omitted, returns all backlogs 
            levels of the given team.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.Backlog.GetTeamBacklogLevel.Team">
            <summary>
            HELP_PARAM_TEAM
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.Backlog.GetTeamBacklogLevel.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.Backlog.GetTeamBacklogLevel.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.Backlog.GetTeamBacklogLevel.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Team.Board.GetTeamBoard">
            <summary>
            Gets one or more team boards.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.Board.GetTeamBoard.Board">
            <summary>
            Specifies the board name. Wildcards are supported. When omitted, returns all boards in 
            the given team.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.Board.GetTeamBoard.Team">
            <summary>
            HELP_PARAM_TEAM
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.Board.GetTeamBoard.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.Board.GetTeamBoard.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.Board.GetTeamBoard.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Team.Board.GetTeamBoardCardRule">
            <summary>
            Gets one or more team board card rules.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.Board.GetTeamBoardCardRule.Rule">
            <summary>
            Specifies the rule name. Wildcards are supported. 
            When omitted, returns all card rules in the given board.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.Board.GetTeamBoardCardRule.RuleType">
            <summary>
            Specifies the kind of rule to return. When omitted, returns 
            both rule types (card color and tag color).
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.Board.GetTeamBoardCardRule.Board">
            <summary>
            Specifies the board name.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.Board.GetTeamBoardCardRule.Team">
            <summary>
            HELP_PARAM_TEAM
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.Board.GetTeamBoardCardRule.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.Board.GetTeamBoardCardRule.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.Board.GetTeamBoardCardRule.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Team.Board.SetTeamBoardCardRule">
            <summary>
            Set the card rule settings of the specified backlog board.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.Board.SetTeamBoardCardRule.WebApiBoard">
            <summary>
            Specifies the board name. Wildcards are supported. When omitted, returns card rules 
            for all boards in the given team.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.Board.SetTeamBoardCardRule.Passthru">
            <summary>
            HELP_PARAM_PASSTHRU
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.Board.SetTeamBoardCardRule.Team">
            <summary>
            HELP_PARAM_TEAM
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.Board.SetTeamBoardCardRule.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.Board.SetTeamBoardCardRule.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.Board.SetTeamBoardCardRule.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Team.ConnectTeam">
            <summary>
            Connects to a team.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.ConnectTeam.Team">
            <summary>
              Specifies the name of the Team, its ID (a GUID), or a 
              Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. For more details, 
              see the Get-TfsTeam cmdlet.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.ConnectTeam.Passthru">
            <summary>
            HELP_PARAM_PASSTHRU
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.ConnectTeam.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.ConnectTeam.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.ConnectTeam.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.ConnectTeam.Cached">
            <summary>
            HELP_PARAM_CACHED_CREDENTIAL
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.ConnectTeam.UserName">
            <summary>
            HELP_PARAM_USER_NAME
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.ConnectTeam.Password">
            <summary>
            HELP_PARAM_PASSWORD
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.ConnectTeam.Credential">
            <summary>
            HELP_PARAM_CREDENTIAL
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.ConnectTeam.PersonalAccessToken">
            <summary>
            HELP_PARAM_PERSONAL_ACCESS_TOKEN
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.ConnectTeam.Interactive">
            <summary>
            HELP_PARAM_INTERACTIVE
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Team.DisconnectTeam">
            <summary>
            Disconnects from the currently connected team.
            </summary>
            <remarks>
            The Disconnect-TfsTeam cmdlet removes the connection previously set by its 
            counterpart Connect-TfsTeam. Therefore, cmdlets relying on a "default team" 
            as provided by "Get-TfsTeam -Current" will no longer work after a call to 
            this cmdlet, unless their -Team argument is provided or a new call to 
            Connect-TfsTeam is made.
            </remarks>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Team.GetTeam">
            <summary>
            Gets information about one or more teams.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.GetTeam.Team">
            <summary>
            Specifies the team to return. Accepted values are its name, its ID, or a
            Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object. Wildcards are supported.
            When omitted, all teams in the given team project are returned.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.GetTeam.IncludeMembers">
            <summary>
            Get team members (fills the Members property with a list of
            Microsoft.VisualStudio.Services.WebApi.TeamMember objects).
            When omitted, only basic team information (such as name, description and ID) are returned.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.GetTeam.IncludeSettings">
            <summary>
            Gets team settings (fills the Settings, TeamField, and IterationPaths properties).
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.GetTeam.Current">
            <summary>
            Returns the team specified in the last call to Connect-TfsTeam (i.e. the "current" team)
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.GetTeam.Default">
            <summary>
            Returns the default team in the given team project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.GetTeam.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.GetTeam.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.GetTeam.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.GetTeam.Cached">
            <summary>
            HELP_PARAM_CACHED_CREDENTIAL
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.GetTeam.UserName">
            <summary>
            HELP_PARAM_USER_NAME
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.GetTeam.Password">
            <summary>
            HELP_PARAM_PASSWORD
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.GetTeam.Credential">
            <summary>
            HELP_PARAM_CREDENTIAL
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.GetTeam.PersonalAccessToken">
            <summary>
            HELP_PARAM_PERSONAL_ACCESS_TOKEN
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.GetTeam.Interactive">
            <summary>
            HELP_PARAM_INTERACTIVE
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Team.NewTeam">
            <summary>
            Creates a new team.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.NewTeam.Team">
            <summary>
            Specifies the name of the new team.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.NewTeam.DefaultAreaPath">
            <summary>
            Specifies the team's default area path (or "team field"). The default area path is assigned
            automatically to all work items created in a team's backlog and/or board. When omitted,
            an area path may still be associated to this team depending on whether NoAutomaticAreaPath
            is set
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.NewTeam.NoDefaultArea">
            <summary>
            Do not associate an area path automatically to the new team. When omitted, an area path 
            is created (if needed) and then is set as the default area path / team field
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.NewTeam.AreaPaths">
            <summary>
            Specifies the backlog area path(s) that are associated with this team. Wildcards are supported. 
            When the path ends with an asterisk, all child area paths will be included recursively. 
            Otherwise, only the area itself (without its children) will be included.
            To include the children of the default area path, use the wildcard character (*) without a path.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.NewTeam.BacklogIteration">
            <summary>
            Specifies the team's backlog iteration path. When omitted, defaults to the team project's root iteration.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.NewTeam.DefaultIterationMacro">
            <summary>
            Specifies the default iteration macro. When omitted, defaults to "@CurrentIteration".
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.NewTeam.IterationPaths">
            <summary>
            Specifies the backlog iteration path(s) that are associated with this team. 
            Wildcards are supported. 
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.NewTeam.NoBacklogIteration">
            <summary>
            Do not associate an iteration path automatically to the new team. When omitted, 
            an iteration path is created (if needed) and then is set as the default 
            backlog iteration
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.NewTeam.Description">
            <summary>
            Specifies a description of the new team.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.NewTeam.Passthru">
            <summary>
            HELP_PARAM_PASSTHRU
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.NewTeam.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.NewTeam.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.NewTeam.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Team.RemoveTeam">
            <summary>
            Deletes a team.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.RemoveTeam.Team">
            <summary>
            HELP_PARAM_TEAM
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.RemoveTeam.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.RemoveTeam.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.RemoveTeam.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Team.RenameTeam">
            <summary>
            Renames a team.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.RenameTeam.Team">
            <summary>
            HELP_PARAM_TEAM
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.RenameTeam.NewName">
            <summary>
            HELP_PARAM_NEWNAME
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.RenameTeam.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.RenameTeam.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.RenameTeam.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Team.SetTeam">
            <summary>
            Changes the details of a team.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.SetTeam.Team">
            <summary>
            HELP_PARAM_TEAM
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.SetTeam.Default">
            <summary>
            Sets the specified team as the default team.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.SetTeam.Description">
            <summary>
            Specifies a new description
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.SetTeam.DefaultAreaPath">
            <summary>
            Specifies the team's default area path (or "team field"). The default area path is assigned
            automatically to all work items created in a team's backlog and/or board.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.SetTeam.AreaPaths">
            <summary>
            Specifies the backlog area path(s) that are associated with this team. Wildcards are supported. 
            When the path ends with an asterisk, all child area paths will be included recursively. 
            Otherwise, only the area itself (without its children) will be included.
            To include the children of the default area path, use the wildcard character (*) without a path.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.SetTeam.OverwriteAreaPaths">
            <summary>
            Replaces the existing area paths with the specified list of area paths. 
            When omitted, the new area paths are added alongside the previously defined ones.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.SetTeam.BacklogIteration">
            <summary>
            Specifies the team's backlog iteration path. When omitted, defaults to the team project's root iteration.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.SetTeam.DefaultIterationMacro">
            <summary>
            Specifies the default iteration macro. 
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.SetTeam.IterationPaths">
            <summary>
            Specifies the backlog iteration path(s) that are associated with this team. 
            Wildcards are supported. 
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.SetTeam.OverwriteIterationPaths">
            <summary>
            Replaces the existing iteration paths with the specified list of iteration paths. 
            When omitted, the new iteration paths are added alongside the previously defined ones.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.SetTeam.WorkingDays">
            <summary>
             Specifies the team's Working Days.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.SetTeam.BugsBehavior">
            <summary>
            Specifies how bugs should behave when added to a board.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.SetTeam.BacklogVisibilities">
            <summary>
            Specifies which backlog levels (e.g. Epics, Features, Stories) should be visible.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.SetTeam.Force">
            <summary>
            Allows the cmdlet to create target area and/or iteration nodes if they're missing.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.SetTeam.Passthru">
            <summary>
            HELP_PARAM_PASSTHRU
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.SetTeam.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.SetTeam.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.SetTeam.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Team.TeamAdmin.AddTeamAdmin">
            <summary>
            Adds a new administrator to a team.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.TeamAdmin.AddTeamAdmin.Admin">
            <summary>
            Specifies the administrator to add to the given team.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.TeamAdmin.AddTeamAdmin.Team">
            <summary>
            HELP_PARAM_TEAM
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.TeamAdmin.AddTeamAdmin.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.TeamAdmin.AddTeamAdmin.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.TeamAdmin.AddTeamAdmin.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Team.TeamAdmin.GetTeamAdmin">
            <summary>
            Gets the administrators of a team.
            </summary>    
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.TeamAdmin.GetTeamAdmin.Admin">
            <summary>
            Specifies the administrator to get from the given team. Wildcards are supported.
            When omitted, all administrators are returned.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.TeamAdmin.GetTeamAdmin.Team">
            <summary>
            HELP_PARAM_TEAM
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.TeamAdmin.GetTeamAdmin.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.TeamAdmin.GetTeamAdmin.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.TeamAdmin.GetTeamAdmin.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Team.TeamAdmin.RemoveTeamAdmin">
            <summary>
            Removes an administrator from a team.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.TeamAdmin.RemoveTeamAdmin.Admin">
            <summary>
            Specifies the administrator to remove from the team.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.TeamAdmin.RemoveTeamAdmin.Team">
            <summary>
            HELP_PARAM_TEAM
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.TeamAdmin.RemoveTeamAdmin.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.TeamAdmin.RemoveTeamAdmin.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.TeamAdmin.RemoveTeamAdmin.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Team.TeamMember.AddTeamMember">
            <summary>
            Adds new members to a team.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.TeamMember.AddTeamMember.Member">
            <summary>
            Specifies the member (user or group) to add to the given team.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.TeamMember.AddTeamMember.Team">
            <summary>
            HELP_PARAM_TEAM
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.TeamMember.AddTeamMember.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.TeamMember.AddTeamMember.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.TeamMember.AddTeamMember.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Team.TeamMember.GetTeamMember">
            <summary>
            Gets the members of a team.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.TeamMember.GetTeamMember.Member">
            <summary>
            Specifies the member (user or group) to get from the given team. Wildcards are supported.
            When omitted, all team members are returned.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.TeamMember.GetTeamMember.Recurse">
            <summary>
            Recursively expands all member groups, returning the users and/or groups contained in them
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.TeamMember.GetTeamMember.Team">
            <summary>
            HELP_PARAM_TEAM
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.TeamMember.GetTeamMember.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.TeamMember.GetTeamMember.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.TeamMember.GetTeamMember.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Team.TeamMember.RemoveTeamMember">
            <summary>
            Removes a member from a team.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.TeamMember.RemoveTeamMember.Member">
            <summary>
            Specifies the member (user or group) to remove from the given team.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.TeamMember.RemoveTeamMember.Team">
            <summary>
            HELP_PARAM_TEAM
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.TeamMember.RemoveTeamMember.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.TeamMember.RemoveTeamMember.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.TeamMember.RemoveTeamMember.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.TestManagement.CopyTestPlan">
            <summary>
            Clone a test plan and, optionally, its test suites and test cases.
            </summary>
            <remarks>
              <para>The Copy-TfsTestPlan copies ("clones") a test plan to help duplicate test suites and/or test cases. Cloning is useful if you want to branch your application into two versions. After copying, the tests for the two versions can be changed without affecting each other.</para>
              <para>When you clone a test suite, the following objects are copied from the source test plan to the destination test plan:</para>
              <para>  * Test cases (note: Each new test case retains its shared steps. A link is made between the source and new test cases. The new test cases do not have test runs, bugs, test results, and build information);</para>
              <para>  * Shared steps referenced by cloned test cases;</para>
              <para>  * Test suites (note: The following data is retained - Names and hierarchical structure of the test suites; Order of the test cases; Assigned testers; Configurations);</para>
              <para>  * Action Recordings linked from a cloned test case;</para>
              <para>  * Links and Attachments;</para>
              <para>  * Test configuration.</para>
              <para>The items below are only copied when using -CloneRequirements:</para>
              <para>  * Requirements-based suites;</para>
              <para>  * Requirements work items (product backlog items or user stories);</para>
              <para>  * Bug work items, when in a project that uses the Scrum process template or any other project in which the Bug work item type is in the Requirements work item category. In other projects, bugs are not cloned.</para>
            </remarks>
            <example>
            <code>Copy-TfsTestPlan -TestPlan "My test plan" -Project "SourceProject" -Destination "TargetProject" -NewName "My new test plan"</code>
            </example>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TestManagement.CopyTestPlan.TestPlan">
            <summary>
            Specifies the name of the test plan to clone.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TestManagement.CopyTestPlan.NewName">
            <summary>
            Specifies the name of the new test plan.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TestManagement.CopyTestPlan.Destination">
            <summary>
            Specifies the name of the team project where the test plan will be cloned into. 
            When omitted, the test plan is cloned into the same team project of the original 
            test plan.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TestManagement.CopyTestPlan.AreaPath">
            <summary>
            Specifies the area path where the test plan will be cloned into. 
            When omitted, the test plan is cloned into the same area path of the original 
            test plan.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TestManagement.CopyTestPlan.IterationPath">
            <summary>
            Specifies the iteration path where the test plan will be cloned into. 
            When omitted, the test plan is cloned into the same iteration path of 
            the original test plan.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TestManagement.CopyTestPlan.DeepClone">
            <summary>
            Clones all the referenced test cases. When omitted, only the test plan is 
            cloned; the original test cases are only referenced in the new plan, not duplicated.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TestManagement.CopyTestPlan.Recurse">
            <summary>
            Clone all test suites recursively.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TestManagement.CopyTestPlan.CopyAncestorHierarchy">
            <summary>
            Copies ancestor hierarchy.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TestManagement.CopyTestPlan.CloneRequirements">
            <summary>
            Clones requirements referenced by the test plan.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TestManagement.CopyTestPlan.DestinationWorkItemType">
            <summary>
            Specifies the name of the workitem type of the clone.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TestManagement.CopyTestPlan.SuiteIds">
            <summary>
            Clones only the specified suites.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TestManagement.CopyTestPlan.RelatedLinkComment">
            <summary>
            Specifies the comment of the Related link that is created ato point 
            to the original test plan.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TestManagement.CopyTestPlan.Passthru">
            <summary>
            HELP_PARAM_PASSTHRU
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TestManagement.CopyTestPlan.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TestManagement.CopyTestPlan.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TestManagement.CopyTestPlan.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.TestManagement.GetTestPlan">
            <summary>
            Gets the contents of one or more test plans.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TestManagement.GetTestPlan.TestPlan">
            <summary>
            Specifies the test plan name. Wildcards are supported. When omitted, returns all test cases in the given team project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TestManagement.GetTestPlan.Owner">
            <summary>
            Gets only the plans owned by the specified user.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TestManagement.GetTestPlan.NoPlanDetails">
            <summary>
            Get only basic properties of the test plan.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TestManagement.GetTestPlan.Active">
            <summary>
            Get only the active plans.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TestManagement.GetTestPlan.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TestManagement.GetTestPlan.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TestManagement.GetTestPlan.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.TestManagement.NewTestPlan">
            <summary>
            Creates a new test plan.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TestManagement.NewTestPlan.TestPlan">
            <summary>
            Specifies the test plan name.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TestManagement.NewTestPlan.AreaPath">
            <summary>
            Specifies the owner of the new test plan.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TestManagement.NewTestPlan.IterationPath">
            <summary>
            Specifies the owner of the new test plan.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TestManagement.NewTestPlan.StartDate">
            <summary>
            Specifies the start date of the test plan.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TestManagement.NewTestPlan.EndDate">
            <summary>
            Specifies the end date of the test plan.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TestManagement.NewTestPlan.Owner">
            <summary>
            Specifies the owner of the new test plan.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TestManagement.NewTestPlan.Passthru">
            <summary>
            HELP_PARAM_PASSTHRU
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TestManagement.NewTestPlan.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TestManagement.NewTestPlan.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TestManagement.NewTestPlan.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.TestManagement.RemoveTestPlan">
            <summary>
            Deletes one or more test plans.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TestManagement.RemoveTestPlan.TestPlan">
            <summary>
            Specifies one or more test plans to delete. Wildcards are supported.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TestManagement.RemoveTestPlan.Force">
            <summary>
            Forces the deletion of test plans with test suites and/or test cases. 
            When omitted, only empty test plans can be deleted.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TestManagement.RemoveTestPlan.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TestManagement.RemoveTestPlan.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TestManagement.RemoveTestPlan.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.TestManagement.RenameTestPlan">
            <summary>
            Renames a test plans.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TestManagement.RenameTestPlan.TestPlan">
            <summary>
            Specifies the test plan name.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TestManagement.RenameTestPlan.NewName">
            <summary>
            HELP_PARAM_NEWNAME
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TestManagement.RenameTestPlan.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TestManagement.RenameTestPlan.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TestManagement.RenameTestPlan.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Wiki.GetWiki">
            <summary>
            Gets information from one or more Wiki repositories in a team project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Wiki.GetWiki.Wiki">
            <summary>
            Specifies the name or ID of a Wiki repository. Wildcards are supported. 
            When omitted, all Wiki repositories in the supplied team project are returned.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Wiki.GetWiki.ProjectWiki">
            <summary>
            Returns only provisioned ("project") Wikis. When omitted, returns all Wikis 
            (both Project wikis and Code wikis).
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Wiki.GetWiki.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Wiki.GetWiki.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Wiki.GetWiki.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Wiki.NewWiki">
            <summary>
            Creates a new Wiki repository in a team project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Wiki.NewWiki.Wiki">
            <summary>
            Specifies the name of the new Wiki
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Wiki.NewWiki.Repository">
            <summary>
            Specifies the name or ID of the Git repository to publish as a Wiki
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Wiki.NewWiki.Branch">
            <summary>
            Specifies the name or ID of the source branch to publish as a Wiki. When ommited, the default branch is used.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Wiki.NewWiki.Path">
            <summary>
            Specifies the path to the folder in the repository to publish as a Wiki. When ommited, defaults to the root folder.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Wiki.NewWiki.ProjectWiki">
            <summary>
            Creates a provisioned ("project") Wiki in the specified Team Project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Wiki.NewWiki.Passthru">
            <summary>
            HELP_PARAM_PASSTHRU
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Wiki.NewWiki.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Wiki.NewWiki.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Wiki.NewWiki.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Wiki.RemoveWiki">
            <summary>
            Deletes one or more Git repositories from a team project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Wiki.RemoveWiki.Wiki">
            <summary>
            Specifies the Wiki to be deleted.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Wiki.RemoveWiki.ProjectWiki">
            <summary>
            Deletes the provisioned ("project") Wiki of the specified Team Project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Wiki.RemoveWiki.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Wiki.RemoveWiki.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Wiki.RemoveWiki.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.CopyArea">
            <summary>
            Copies one or more Work Item Areas recursively
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.CopyArea.Node">
            <summary>
            HELP_PARAM_AREA
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.CopyArea.Destination">
            <summary>
            Specifies the name and/or path of the destination parent node.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.CopyArea.DestinationProject">
            <summary>
            Specifies the name and/or path of the destination team project. 
            When omitted, copies the area to the same team project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.CopyArea.Force">
            <summary>
            Allows the cmdlet to create destination parent node(s) if they're missing.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.CopyArea.Recurse">
            <summary>
            Copies nodes recursively. When omitted, sub-nodes are not copied.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.CopyArea.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.CopyArea.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.CopyArea.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.CopyIteration">
            <summary>
            Copies one or more Iterations recursively
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.CopyIteration.Node">
            <summary>
            HELP_PARAM_ITERATION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.CopyIteration.Destination">
            <summary>
            Specifies the name and/or path of the destination parent node.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.CopyIteration.DestinationProject">
            <summary>
            Specifies the name and/or path of the destination team project. 
            When omitted, copies the iteration to the same team project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.CopyIteration.Force">
            <summary>
            Allows the cmdlet to create destination parent node(s) if they're missing.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.CopyIteration.Recurse">
            <summary>
            Copies nodes recursively. When omitted, sub-nodes are not copied.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.CopyIteration.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.CopyIteration.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.CopyIteration.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.GetArea">
            <summary>
            Gets one or more Work Item Areas from a given Team Project.
            </summary>
            <example>
              <code>Get-TfsArea</code>
              <para>Returns all area paths in the currently connected Team Project (as defined by a previous call to Connect-TfsTeamProject)</para>
            </example>
            <example>
              <code>Get-TfsArea '\**\Support' -Project Tailspin</code>
              <para>Performs a recursive search and returns all area paths named 'Support' that may exist in a team project called Tailspin</para>
            </example>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.GetArea.Node">
            <summary>
            HELP_PARAM_AREA
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.GetArea.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.GetArea.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.GetArea.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.GetIteration">
            <summary>
            Gets one or more Iterations from a given Team Project.
            </summary>
            <example>
              <code>Get-TfsIteration</code>
              <para>Returns all iterations in the currently connected Team Project (as defined by a previous call to Connect-TfsTeamProject)</para>
            </example>
            <example>
              <code>Get-TfsIteration '\**\Support' -Project Tailspin</code>
              <para>Performs a recursive search and returns all iterations named 'Support' that may exist in a team project called Tailspin</para>
            </example>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.GetIteration.Node">
            <summary>
            HELP_PARAM_ITERATION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.GetIteration.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.GetIteration.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.GetIteration.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.MoveArea">
            <summary>
            Moves one or more Work Item Areas to a new parent node
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.MoveArea.Node">
            <summary>
            HELP_PARAM_AREA
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.MoveArea.Destination">
            <summary>
            Specifies the name and/or path of the destination parent node.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.MoveArea.Force">
            <summary>
            Allows the cmdlet to create destination parent node(s) if they're missing.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.MoveArea.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.MoveArea.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.MoveArea.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.MoveIteration">
            <summary>
            Moves one or more Iterations to a new parent node
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.MoveIteration.Node">
            <summary>
            HELP_PARAM_ITERATION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.MoveIteration.Destination">
            <summary>
            Specifies the name and/or path of the destination parent node.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.MoveIteration.Force">
            <summary>
            Allows the cmdlet to create destination parent node(s) if they're missing.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.MoveIteration.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.MoveIteration.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.MoveIteration.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.NewArea">
            <summary>
            Creates a new Work Item Area in the given Team Project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.NewArea.Node">
            <summary>
            Specifies the path of the new Area. When supplying a path, use a backslash ("\\") 
            between the path segments. Leading and trailing backslashes are optional. 
            The last segment in the path will be the area name.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.NewArea.Force">
            <summary>
            Allows the cmdlet to create parent nodes if they're missing.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.NewArea.Passthru">
            <summary>
            HELP_PARAM_PASSTHRU
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.NewArea.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.NewArea.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.NewArea.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.NewIteration">
            <summary>
            Creates a new Iteration in the given Team Project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.NewIteration.Node">
            <summary>
            Specifies the path of the new Iteration. When supplying a path, use a backslash ("\\") 
            between the path segments. Leading and trailing backslashes are optional. 
            The last segment in the path will be the iteration name.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.NewIteration.StartDate">
            <summary>
            Specifies the start date of the iteration.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.NewIteration.FinishDate">
            <summary>
            Sets the finish date of the iteration. 
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.NewIteration.Force">
            <summary>
            Allows the cmdlet to create parent nodes if they're missing.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.NewIteration.Passthru">
            <summary>
            HELP_PARAM_PASSTHRU
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.NewIteration.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.NewIteration.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.NewIteration.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RemoveArea">
            <summary>
            Deletes one or more Work Item Areas from a given Team Project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RemoveArea.Node">
            <summary>
            HELP_PARAM_AREA
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RemoveArea.MoveTo">
            <summary>
            Specifies the new parent node for the work items currently assigned to the node 
            being deleted, if any. When omitted, defaults to the root node (the "\" node, at the
            team project level).
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RemoveArea.Recurse">
            <summary>
            Removes node(s) recursively.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RemoveArea.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RemoveArea.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RemoveArea.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RemoveIteration">
            <summary>
            Deletes one or more iterations from a given Team Project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RemoveIteration.Node">
            <summary>
            HELP_PARAM_ITERATION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RemoveIteration.MoveTo">
            <summary>
            Specifies the new parent node for the work items currently assigned to the node 
            being deleted, if any. When omitted, defaults to the root node (the "\" node, at the
            team project level).
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RemoveIteration.Recurse">
            <summary>
            Removes node(s) recursively.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RemoveIteration.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RemoveIteration.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RemoveIteration.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RenameArea">
            <summary>
            Renames an area path.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RenameArea.Node">
            <summary>
            HELP_PARAM_AREA
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RenameArea.NewName">
            <summary>
            HELP_PARAM_NEWNAME
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RenameArea.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RenameArea.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RenameArea.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RenameIteration">
            <summary>
            Renames an iteration path.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RenameIteration.Node">
            <summary>
            HELP_PARAM_ITERATION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RenameIteration.NewName">
            <summary>
            HELP_PARAM_NEWNAME
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RenameIteration.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RenameIteration.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RenameIteration.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.SetIteration">
            <summary>
            Modifies the dates of an iteration.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.SetIteration.Node">
            <summary>
            HELP_PARAM_ITERATION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.SetIteration.StartDate">
            <summary>
            Specifies the start date of the iteration. To clear the start date, set it to $null. Note that when clearing a date, 
            both must be cleared at the same time (i.e. setting both StartDate and FinishDate to $null).
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.SetIteration.FinishDate">
            <summary>
            Sets the finish date of the iteration. To clear the finish date, set it to $null. Note that when clearing a date, 
            both must be cleared at the same time (i.e. setting both StartDate and FinishDate to $null).
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.SetIteration.Length">
            <summary>
            Sets the length (in days) of the iteration. To clear the finish date, set it to 0. Note that when clearing a date, 
            both must be cleared at the same time (i.e. setting both StartDate to $null and Length to 0).
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.SetIteration.Passthru">
            <summary>
            HELP_PARAM_PASSTHRU
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.SetIteration.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.SetIteration.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.SetIteration.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.TestArea">
            <summary>
            Determines whether the specified Work Area exist.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.TestArea.Node">
            <summary>
            HELP_PARAM_AREA
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.TestArea.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.TestArea.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.TestArea.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.TestIteration">
            <summary>
            Determines whether the specified iteration exist.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.TestIteration.Node">
            <summary>
            HELP_PARAM_AREA
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.TestIteration.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.TestIteration.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.TestIteration.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem">
            <summary>
            Gets the contents of one or more work items.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem.WorkItem">
            <summary>
            HELP_PARAM_WORKITEM
            </summary>
            <seealso cref="T:Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItem">
            A WorkItem object
            </seealso>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem.Title">
            <summary>
            Specifies the title to look up for in a work item. Wildcards are supported. 
            When a wildcard is used, matches a portion of the title 
            (uses the operator "contains" in the WIQL query). Otherwise, matches the whole field 
            with the operator "=", unless -Ever is also specified. In that case, uses the operator 
            "was ever".
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem.Description">
            <summary>
            Specifies the description to look up for in a work item. Wildcards are supported. 
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem.AreaPath">
            <summary>
            Specifies the area path to look up for in a work item. Wildcards are supported. 
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem.IterationPath">
            <summary>
            Specifies the iteration path to look up for in a work item. Wildcards are supported. 
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem.WorkItemType">
            <summary>
            Specifies the work item type to look up for in a work item. Wildcards are supported. 
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem.State">
            <summary>
            Specifies the state (field 'System.State') to look up for in a work item. Wildcards are supported. 
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem.Reason">
            <summary>
            Specifies the reason (field 'System.Reason') to look up for in a work item. 
            Wildcards are supported. 
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem.ValueArea">
            <summary>
            Specifies the Value Area (field 'Microsoft.VSTS.Common.ValueArea') to look up for in a work item. 
            Wildcards are supported. 
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem.BoardColumn">
            <summary>
            Specifies the board column to look up for in a work item. 
            Wildcards are supported. 
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem.BoardColumnDone">
            <summary>
            Specifies whether the work item is in the sub-column Doing or Done in a board.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem.CreatedBy">
            <summary>
            Specifies the name or email of the user that created the work item.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem.CreatedDate">
            <summary>
             Specifies the date when the work item was created.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem.ChangedBy">
            <summary>
            Specifies the name or email of the user that did the latest change to the work item.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem.ChangedDate">
            <summary>
            Specifies the date of the latest change to the work item.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem.StateChangeDate">
            <summary>
            Specifies the date of the most recent change to the state of the work item.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem.Priority">
            <summary>
            Specifies the priority of the work item.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem.Tags">
            <summary>
            Specifies the tags to look up for in a work item. When multiple tags are supplied, 
            they are combined with an OR operator - in other works, returns  work items that 
            contain ANY ofthe supplied tags.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem.Ever">
            <summary>
            Switches the query to historical query mode, by changing operators to 
            "WAS EVER" where possible.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem.Revision">
            <summary>B
            Specifies a work item revision number to retrieve. When omitted, returns
            the latest revision of the work item.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem.AsOf">
            <summary>
            Returns the field values as they were defined in the work item revision that
            was the latest revision by the date specified.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem.Wiql">
            <summary>
            Specifies a query written in WIQL (Work Item Query Language)
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem.SavedQuery">
            <summary>
            Specifies the path of a saved query to be executed. 
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem.QueryParameters">
            <summary>
            Specifies the path of a saved query to be executed. 
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem.Fields">
            <summary>
            Specifies which fields should be retrieved. When omitted, defaults to a set of
            standard fields that include Id, Title, Description, some state-related fields and more. 
            To retrive all fields, pass an asterisk ('*') to this argument.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem.Where">
            <summary>
            Specifies a filter clause (the portion of a WIQL query after the WHERE keyword).
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem.TimePrecision">
            <summary>
            Fetches work items in "time-precision mode": search criteria in WIQL queries 
            take into account time information as well, not only dates.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem.ShowWindow">
            <summary>
            Opens the specified work item in the default web browser.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem.Deleted">
            <summary>
            Gets deleted work items.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem.IncludeLinks">
            <summary>
            Gets information about all links and attachments in the work item. When omitted, only fields are retrieved.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem.Team">
            <summary>
            HELP_PARAM_TEAM
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.History.GetWorkItemHistory">
            <summary>
            Gets the history of changes of a work item.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.History.GetWorkItemHistory.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.History.GetWorkItemHistory.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.Linking.AddWorkItemLink">
            <summary>
            Adds a link between two work items.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Linking.AddWorkItemLink.Passthru">
            <summary>
            HELP_PARAM_PASSTHRU
            </summary>
            <value></value>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Linking.AddWorkItemLink.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Linking.AddWorkItemLink.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.Linking.ExportWorkItemAttachment">
            <summary>
            Downloads one or more attachments from work items
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Linking.ExportWorkItemAttachment.Attachment">
            <summary>
            Specifies the attachment to download. Wildcards are supported. 
            When omitted, all attachments in the specified work item are downloaded.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Linking.ExportWorkItemAttachment.WorkItem">
            <summary>
            HELP_PARAM_WORKITEM
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Linking.ExportWorkItemAttachment.Destination">
            <summary>
            Specifies the directory to save the attachment to. When omitted, defaults to the current directory.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Linking.ExportWorkItemAttachment.Force">
            <summary>
            Allows the cmdlet to overwrite an existing file.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Linking.ExportWorkItemAttachment.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Linking.ExportWorkItemAttachment.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.Linking.GetWorkItemLink">
            <summary>
            Gets the links in a work item.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Linking.GetWorkItemLink.WorkItem">
            <summary>
            HELP_PARAM_WORKITEM
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Linking.GetWorkItemLink.LinkType">
            <summary>
            Returns only the specified link types. When omitted, returns all link types.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Linking.GetWorkItemLink.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Linking.GetWorkItemLink.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.Linking.GetWorkItemLinkType">
            <summary>
            Gets the work item link end types of a team project collection.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Linking.GetWorkItemLinkType.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Linking.GetWorkItemLinkType.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.MoveWorkItem">
            <summary>
            Moves a work item to a different team project in the same collection.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.MoveWorkItem.WorkItem">
            <summary>
            Specifies a work item. Valid values are the work item ID or an instance of
            Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItem.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.MoveWorkItem.Project">
            <summary>
            Specifies the team project where the work item will be moved to.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.MoveWorkItem.Area">
            <summary>
            Specifies the area path in the destination project where the work item will be moved to. 
            When omitted, the work item is moved to the root area path in the destination project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.MoveWorkItem.Iteration">
            <summary>
            Specifies the iteration path in the destination project where the work item will be moved to. 
            When omitted, the work item is moved to the root iteration path in the destination project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.MoveWorkItem.State">
            <summary>
            Specifies a new state for the work item in the destination project. 
            When omitted, it retains the current state.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.MoveWorkItem.Comment">
            <summary>
            Specifies a comment to be added to the history
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.MoveWorkItem.Passthru">
            <summary>
            HELP_PARAM_PASSTHRU
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.MoveWorkItem.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.MoveWorkItem.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.NewWorkItem">
            <summary>
            Creates a new work item.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.NewWorkItem.Type">
            <summary>
            Specifies the type of the new work item.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.NewWorkItem.Title">
            <summary>
            Specifies the title of the work item.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.NewWorkItem.Description">
            <summary>
            Specifies the description of the work item.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.NewWorkItem.AreaPath">
            <summary>
            Specifies the area path of the work item.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.NewWorkItem.IterationPath">
            <summary>
            Specifies the iteration path of the work item.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.NewWorkItem.AssignedTo">
            <summary>
            Specifies the user this work item is assigned to.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.NewWorkItem.State">
            <summary>
            Specifies the state of the work item.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.NewWorkItem.Reason">
            <summary>
            Specifies the reason (field 'System.Reason') of the work item. 
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.NewWorkItem.ValueArea">
            <summary>
            Specifies the Value Area of the work item. 
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.NewWorkItem.BoardColumn">
            <summary>
            Specifies the board column of the work item. 
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.NewWorkItem.BoardColumnDone">
            <summary>
            Specifies whether the work item is in the sub-column Doing or Done in a board.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.NewWorkItem.BoardLane">
            <summary>
            Specifies the board lane of the work item
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.NewWorkItem.Priority">
            <summary>
            Specifies the priority of the work item.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.NewWorkItem.Tags">
            <summary>
            Specifies the tags of the work item.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.NewWorkItem.Fields">
            <summary>
            Specifies the names and the corresponding values for the fields to be set 
            in the work item and whose values were not supplied in the other arguments 
            to this cmdlet.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.NewWorkItem.BypassRules">
            <summary>
            Bypasses any rule validation when saving the work item. Use it with caution, as this 
            may leave the work item in an invalid state.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.NewWorkItem.Passthru">
            <summary>
            HELP_PARAM_PASSTHRU
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.NewWorkItem.Team">
            <summary>
            HELP_PARAM_TEAM
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.NewWorkItem.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.NewWorkItem.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.NewWorkItem.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.Query.ExportWorkItemQuery">
            <summary>
            Exports a saved work item query to XML.
            </summary>
            <remarks>
            Work item queries can be exported to XML files (.WIQ extension) in order to be shared 
            and reused. Visual Studio Team Explorer has the ability to open and save WIQ files. Use 
            this cmdlet to generate WIQ files compatible with the format supported by Team Explorer.
            </remarks>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.ExportWorkItemQuery.Query">
            <summary>
            Specifies one or more saved queries to export. Wildcards supported. 
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.ExportWorkItemQuery.Scope">
            <summary>
            Specifies the scope of the returned item. Personal refers to the 
            "My Queries" folder", whereas Shared refers to the "Shared Queries" 
            folder. When omitted defaults to "Both", effectively searching for items 
            in both scopes.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.ExportWorkItemQuery.Destination">
            <summary>
            Specifies the path to the folder where exported queries are saved.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.ExportWorkItemQuery.Encoding">
            <summary>
            Specifies the encoding for the exported XML files. When omitted, 
            defaults to UTF-8.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.ExportWorkItemQuery.FlattenFolders">
            <summary>
            Flattens the query folder structure. When omitted, the original query 
            folder structure is recreated in the destination folder.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.ExportWorkItemQuery.Force">
            <summary>
            HELP_PARAM_FORCE_OVERWRITE
            </summary>
            <value></value>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.ExportWorkItemQuery.AsXml">
            <summary>
            Exports the saved query to the standard output stream as a string-encoded 
            XML document.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.ExportWorkItemQuery.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.ExportWorkItemQuery.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.ExportWorkItemQuery.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.Query.Folder.GetWorkItemQueryFolder">
            <summary>
            Gets the definition of one or more work item saved queries.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.Folder.GetWorkItemQueryFolder.Folder">
            <summary>
            Specifies one or more saved queries to return. Wildcards supported. 
            When omitted, returns all saved queries in the given scope of the given team project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.Folder.GetWorkItemQueryFolder.Scope">
            <summary>
            Specifies the scope of the returned item. Personal refers to the 
            "My Queries" folder", whereas Shared refers to the "Shared Queries" 
            folder. When omitted defaults to "Both", effectively searching for items 
            in both scopes.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.Folder.GetWorkItemQueryFolder.Deleted">
            <summary>
            Returns deleted items.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.Folder.GetWorkItemQueryFolder.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.Folder.GetWorkItemQueryFolder.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.Folder.GetWorkItemQueryFolder.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.Query.Folder.NewWorkItemQueryFolder">
            <summary>
            Create a new work items query in the given Team Project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.Folder.NewWorkItemQueryFolder.Folder">
            <summary>
            Specifies one or more saved queries to return. Wildcards supported. 
            When omitted, returns all saved queries in the given scope of the given team project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.Folder.NewWorkItemQueryFolder.Scope">
            <summary>
            Specifies the scope of the returned item. Personal refers to the 
            "My Queries" folder, whereas Shared refers to the "Shared Queries" 
            folder. When omitted defaults to "Both", effectively searching for items 
            in both scopes.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.Folder.NewWorkItemQueryFolder.Passthru">
            <summary>
            HELP_PARAM_PASSTHRU
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.Folder.NewWorkItemQueryFolder.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.Folder.NewWorkItemQueryFolder.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.Folder.NewWorkItemQueryFolder.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.Query.UndoWorkItemQueryFolderRemoval">
            <summary>
            Restores a deleted work item query folder.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.UndoWorkItemQueryFolderRemoval.Folder">
            <summary>
            Specifies one or more query folders to restore. Wildcards supported. 
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.UndoWorkItemQueryFolderRemoval.Scope">
            <summary>
            Specifies the scope of the item to restore. 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.UndoWorkItemQueryFolderRemoval.Recursive">
            <summary>
            Restores the specified query folder and all its descendants. 
            When omitted, the specified folder is restored but not its contents (queries and/or sub-folders).
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.UndoWorkItemQueryFolderRemoval.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.UndoWorkItemQueryFolderRemoval.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.UndoWorkItemQueryFolderRemoval.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.Query.GetWorkItemQuery">
            <summary>
            Gets the definition of one or more work item saved queries.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.GetWorkItemQuery.Query">
            <summary>
            Specifies one or more saved queries to return. Wildcards supported. 
            When omitted, returns all saved queries in the given scope of the given team project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.GetWorkItemQuery.Scope">
            <summary>
            Specifies the scope of the returned item. Personal refers to the 
            "My Queries" folder", whereas Shared refers to the "Shared Queries" 
            folder. When omitted defaults to "Both", effectively searching for items 
            in both scopes.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.GetWorkItemQuery.Deleted">
            <summary>
            Returns only deleted items.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.GetWorkItemQuery.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.GetWorkItemQuery.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.GetWorkItemQuery.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.Query.NewWorkItemQuery">
            <summary>
            Create a new work items query in the given Team Project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.NewWorkItemQuery.Query">
            <summary>
            Specifies one or more saved queries to return. Wildcards supported. 
            When omitted, returns all saved queries in the given scope of the given team project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.NewWorkItemQuery.Scope">
            <summary>
            Specifies the scope of the returned item. Personal refers to the 
            "My Queries" folder", whereas Shared refers to the "Shared Queries" 
            folder. When omitted defaults to "Both", effectively searching for items 
            in both scopes.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.NewWorkItemQuery.Wiql">
            <summary>
            Specifies the query definition text in WIQL (Work Item Query Language).
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.NewWorkItemQuery.Passthru">
            <summary>
            HELP_PARAM_PASSTHRU
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.NewWorkItemQuery.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.NewWorkItemQuery.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.NewWorkItemQuery.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.Query.UndoWorkItemQueryRemoval">
            <summary>
            Restores a deleted work item query.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.UndoWorkItemQueryRemoval.Query">
            <summary>
            Specifies one or more saved queries to restore. Wildcards supported. 
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.UndoWorkItemQueryRemoval.Scope">
            <summary>
            Specifies the scope of the item to restore. 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.UndoWorkItemQueryRemoval.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.UndoWorkItemQueryRemoval.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.UndoWorkItemQueryRemoval.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.RemoveWorkItem">
            <summary>
            Deletes a work item from a team project collection.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.RemoveWorkItem.WorkItem">
            <summary>
            Specifies the work item to remove.
            </summary>
            <seealso cref="T:Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItem">
            A WorkItem object
            </seealso>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.RemoveWorkItem.Destroy">
            <summary>
            Permanently deletes the work item, without sending it to the recycle bin.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.RemoveWorkItem.Force">
            <summary>
            HELP_PARAM_FORCE_REMOVE
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.RemoveWorkItem.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.RemoveWorkItem.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.SearchWorkItem">
            <summary>
            Gets the contents of one or more work items.
            </summary>
            <related>https://docs.microsoft.com/en-us/azure/devops/project/search/advanced-work-item-search-syntax</related>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.SearchWorkItem.Query">
            <summary>
            Specifies the text to search for. Supports the Quick Filter syntax described in 
            https://docs.microsoft.com/en-us/azure/devops/project/search/advanced-work-item-search-syntax
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.SearchWorkItem.Results">
            <summary>
            Specifies the maximum quantity of results. Supports between 1 and 1000 results. 
            When omitted, defaults to 100. Currently this cmdlet does not support result pagination.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.SearchWorkItem.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.SearchWorkItem.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.SearchWorkItem.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.SetWorkItem">
            <summary>
            Sets the contents of one or more work items.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.SetWorkItem.WorkItem">
            <summary>
            Specifies a work item. Valid values are the work item ID or an instance of
            Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItem.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.SetWorkItem.Title">
            <summary>
            Specifies the title of the work item.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.SetWorkItem.Description">
            <summary>
            Specifies the description of the work item.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.SetWorkItem.AreaPath">
            <summary>
            Specifies the area path of the work item.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.SetWorkItem.IterationPath">
            <summary>
            Specifies the iteration path of the work item.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.SetWorkItem.AssignedTo">
            <summary>
            Specifies the user this work item is assigned to.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.SetWorkItem.State">
            <summary>
            Specifies the state of the work item.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.SetWorkItem.Reason">
            <summary>
            Specifies the reason (field 'System.Reason') of the work item. 
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.SetWorkItem.ValueArea">
            <summary>
            Specifies the Value Area of the work item. 
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.SetWorkItem.BoardColumn">
            <summary>
            Specifies the board column of the work item. 
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.SetWorkItem.BoardColumnDone">
            <summary>
            Specifies whether the work item is in the sub-column Doing or Done in a board.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.SetWorkItem.BoardLane">
            <summary>
            Specifies the board lane of the work item
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.SetWorkItem.Priority">
            <summary>
            Specifies the priority of the work item.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.SetWorkItem.Tags">
            <summary>
            Specifies the tags of the work item.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.SetWorkItem.Fields">
            <summary>
            Specifies the names and the corresponding values for the fields to be set 
            in the work item and whose values were not supplied in the other arguments 
            to this cmdlet.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.SetWorkItem.BypassRules">
            <summary>
            Bypasses any rule validation when saving the work item. Use it with caution, as this 
            may leave the work item in an invalid state.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.SetWorkItem.Passthru">
            <summary>
            HELP_PARAM_PASSTHRU
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.SetWorkItem.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.SetWorkItem.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.SetWorkItem.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.Tagging.DisableWorkItemTag">
            <summary>
            Disables (deactivates) a work item tag.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Tagging.DisableWorkItemTag.Tag">
            <summary>
            Specifies the tag to disable. Wildcards are supported.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Tagging.DisableWorkItemTag.Passthru">
            <summary>
            HELP_PARAM_PASSTHRU
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Tagging.DisableWorkItemTag.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Tagging.DisableWorkItemTag.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Tagging.DisableWorkItemTag.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.Tagging.EnableWorkItemTag">
            <summary>
            Enables (activates) a work item tag.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Tagging.EnableWorkItemTag.Tag">
            <summary>
            Specifies the tag to enable. Wildcards are supported.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Tagging.EnableWorkItemTag.Passthru">
            <summary>
            HELP_PARAM_PASSTHRU
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Tagging.EnableWorkItemTag.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Tagging.EnableWorkItemTag.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Tagging.EnableWorkItemTag.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.Tagging.GetWorkItemTag">
            <summary>
            Gets one or more work item tags.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Tagging.GetWorkItemTag.Tag">
            <summary>
            Specifies one or more tags to returns. Wildcards are supported. 
            When omitted, returns all existing tags in the given project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Tagging.GetWorkItemTag.IncludeInactive">
            <summary>
            Includes tags not associated to any work items.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Tagging.GetWorkItemTag.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Tagging.GetWorkItemTag.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Tagging.GetWorkItemTag.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.Tagging.NewWorkItemTag">
            <summary>
            Creates a new work item tag.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Tagging.NewWorkItemTag.Tag">
            <summary>
            Specifies the name of the new tag.
            </summary>
            <value></value>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Tagging.NewWorkItemTag.Passthru">
            <summary>
            HELP_PARAM_PASSTHRU
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Tagging.NewWorkItemTag.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Tagging.NewWorkItemTag.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Tagging.NewWorkItemTag.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.Tagging.RemoveWorkItemTag">
            <summary>
            Deletes one or more work item tags.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Tagging.RemoveWorkItemTag.Tag">
            <summary>
            Specifies one or more tags to delete. Wildcards are supported.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Tagging.RemoveWorkItemTag.Force">
            <summary>
            HELP_PARAM_FORCE_REMOVE
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Tagging.RemoveWorkItemTag.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Tagging.RemoveWorkItemTag.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Tagging.RemoveWorkItemTag.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.Tagging.RenameWorkItemTag">
            <summary>
            Renames a work item tag.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Tagging.RenameWorkItemTag.Tag">
            <summary>
            Specifies the name of the work item tag to rename.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Tagging.RenameWorkItemTag.NewName">
            <summary>
            HELP_PARAM_NEWNAME
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Tagging.RenameWorkItemTag.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Tagging.RenameWorkItemTag.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Tagging.RenameWorkItemTag.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.UndoWorkItemRemoval">
            <summary>
            Restores a deleted work item.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.UndoWorkItemRemoval.WorkItem">
            <summary>
            Specifies the ID of the work item to be restored. Can also receive the output of `Get-WorkItem -Deleted`.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.UndoWorkItemRemoval.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.UndoWorkItemRemoval.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.WorkItemType.ExportWorkItemType">
            <summary>
            Exports an XML work item type definition from a team project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.WorkItemType.ExportWorkItemType.Type">
            <summary>
            Specifies one or more work item types to export. Wildcards are supported. 
            When omitted, all work item types in the given project are exported
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.WorkItemType.ExportWorkItemType.IncludeGlobalLists">
            <summary>
            Exports the definitions of referenced global lists. 
            When omitted, global list definitions are not included in the exported XML document.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.WorkItemType.ExportWorkItemType.Destination">
            <summary>
            Specifies the path to the folder where exported types are saved.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.WorkItemType.ExportWorkItemType.Encoding">
            <summary>
            Specifies the encoding for the exported XML files. When omitted, 
            defaults to UTF-8.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.WorkItemType.ExportWorkItemType.Force">
            <summary>
            HELP_PARAM_FORCE_OVERWRITE
            </summary>
            <value></value>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.WorkItemType.ExportWorkItemType.AsXml">
            <summary>
            Exports the saved query to the standard output stream as a string-encoded 
            XML document.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.WorkItemType.ExportWorkItemType.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.WorkItemType.ExportWorkItemType.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.WorkItemType.ExportWorkItemType.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.WorkItemType.GetWorkItemType">
            <summary>
            Gets one or more Work Item Type definitions from a team project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.WorkItemType.GetWorkItemType.Type">
            <summary>
            Specifies one or more work item type names to return. Wildcards are supported. 
            When omitted, returns all work item types in the given team project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.WorkItemType.GetWorkItemType.WorkItem">
            <summary>
            Speficies a work item whose corresponding type should be returned.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.WorkItemType.GetWorkItemType.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.WorkItemType.GetWorkItemType.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.WorkItemType.GetWorkItemType.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.WorkItemType.ImportWorkItemType">
            <summary>
            Imports a work item type definition into a team project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.WorkItemType.ImportWorkItemType.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.WorkItemType.ImportWorkItemType.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.WorkItemType.ImportWorkItemType.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Controllers.Pipeline.Build.Definition.ResumeBuildDefinitionController">
            <summary>
            Gets one or more build/pipeline definitions in a team project.
            </summary>
        </member>
        <member name="T:TfsCmdlets.Controllers.Pipeline.Build.Definition.SuspendBuildDefinitionController">
            <summary>
            Gets one or more build/pipeline definitions in a team project.
            </summary>
        </member>
        <member name="T:TfsCmdlets.Controllers.Pipeline.ReleaseManagement.GetReleaseDefinitionController">
            <summary>
            Gets information from one or more release definitions in a team project.
            </summary>
        </member>
        <member name="T:TfsCmdlets.Controllers.Pipeline.ReleaseManagement.GetReleaseDefinitionFolderController">
            <summary>
            Gets one or more Release/pipeline definition folders in a team project.
            </summary>
        </member>
        <member name="T:TfsCmdlets.Controllers.Pipeline.ReleaseManagement.RemoveReleaseDefinitionFolderController">
            <summary>
            Deletes one or more release definition folders.
            </summary>
        </member>
        <member name="T:TfsCmdlets.Controllers.ProcessTemplate.GetProcessTemplateController">
            <summary>
            Gets information from one or more process templates.
            </summary>
        </member>
        <member name="T:TfsCmdlets.Controllers.WorkItem.Linking.AddWorkItemLinkController">
            <summary>
            Adds a link between two work items.
            </summary>
        </member>
        <member name="T:TfsCmdlets.Controllers.WorkItem.Linking.GetWorkItemLinkTypeController">
            <summary>
            Gets the work item link end types of a team project collection.
            </summary>
        </member>
        <member name="T:TfsCmdlets.Controllers.WorkItem.Tagging.GetWorkItemTagController">
            <summary>
            Gets one or more work item tags.
            </summary>
        </member>
        <member name="T:TfsCmdlets.Controllers.WorkItem.Tagging.NewWorkItemTagController">
            <summary>
            Gets one or more work item tags.
            </summary>
        </member>
        <member name="T:TfsCmdlets.Controllers.WorkItem.Tagging.RemoveWorkItemTagController">
            <summary>
            Gets one or more work item tags.
            </summary>
        </member>
        <member name="T:TfsCmdlets.Controllers.WorkItem.Tagging.RenameWorkItemTagController">
            <summary>
            Gets one or more work item tags.
            </summary>
        </member>
        <member name="T:TfsCmdlets.Controllers.WorkItem.WorkItemType.GetWorkItemTypeController">
            <summary>
            Exports an XML work item type definition from a team project.
            </summary>
        </member>
        <member name="T:TfsCmdlets.ModuleInitializer">
            <summary>
            PowerShell module initializer
            </summary>
        </member>
        <member name="M:TfsCmdlets.ModuleInitializer.System#Management#Automation#IModuleAssemblyInitializer#OnImport">
            <summary>
            Method called automatically by PowerShell upon module load/start
            </summary>
        </member>
        <member name="T:JetBrains.Annotations.CanBeNullAttribute">
            <summary>
            Indicates that the value of the marked element could be <c>null</c> sometimes,
            so checking for <c>null</c> is required before its usage.
            </summary>
            <example><code>
            [CanBeNull] object Test() => null;
            
            void UseTest() {
              var p = Test();
              var s = p.ToString(); // Warning: Possible 'System.NullReferenceException'
            }
            </code></example>
        </member>
        <member name="T:JetBrains.Annotations.NotNullAttribute">
            <summary>
            Indicates that the value of the marked element can never be <c>null</c>.
            </summary>
            <example><code>
            [NotNull] object Foo() {
              return null; // Warning: Possible 'null' assignment
            }
            </code></example>
        </member>
        <member name="T:JetBrains.Annotations.ItemNotNullAttribute">
            <summary>
            Can be applied to symbols of types derived from IEnumerable as well as to symbols of Task
            and Lazy classes to indicate that the value of a collection item, of the Task.Result property
            or of the Lazy.Value property can never be null.
            </summary>
            <example><code>
            public void Foo([ItemNotNull]List&lt;string&gt; books)
            {
              foreach (var book in books) {
                if (book != null) // Warning: Expression is always true
                 Console.WriteLine(book.ToUpper());
              }
            }
            </code></example>
        </member>
        <member name="T:JetBrains.Annotations.ItemCanBeNullAttribute">
            <summary>
            Can be applied to symbols of types derived from IEnumerable as well as to symbols of Task
            and Lazy classes to indicate that the value of a collection item, of the Task.Result property
            or of the Lazy.Value property can be null.
            </summary>
            <example><code>
            public void Foo([ItemCanBeNull]List&lt;string&gt; books)
            {
              foreach (var book in books)
              {
                // Warning: Possible 'System.NullReferenceException'
                Console.WriteLine(book.ToUpper());
              }
            }
            </code></example>
        </member>
        <member name="T:JetBrains.Annotations.StringFormatMethodAttribute">
            <summary>
            Indicates that the marked method builds string by the format pattern and (optional) arguments.
            The parameter, which contains the format string, should be given in the constructor. The format string
            should be in <see cref="M:System.String.Format(System.IFormatProvider,System.String,System.Object[])"/>-like form.
            </summary>
            <example><code>
            [StringFormatMethod("message")]
            void ShowError(string message, params object[] args) { /* do something */ }
            
            void Foo() {
              ShowError("Failed: {0}"); // Warning: Non-existing argument in format string
            }
            </code></example>
        </member>
        <member name="M:JetBrains.Annotations.StringFormatMethodAttribute.#ctor(System.String)">
            <param name="formatParameterName">
            Specifies which parameter of an annotated method should be treated as the format string
            </param>
        </member>
        <member name="T:JetBrains.Annotations.StructuredMessageTemplateAttribute">
            <summary>
            Indicates that the marked parameter is a message template where placeholders are to be replaced by the following arguments
            in the order in which they appear
            </summary>
            <example><code>
            void LogInfo([StructuredMessageTemplate]string message, params object[] args) { /* do something */ }
            
            void Foo() {
              LogInfo("User created: {username}"); // Warning: Non-existing argument in format string
            }
            </code></example>
        </member>
        <member name="T:JetBrains.Annotations.ValueProviderAttribute">
             <summary>
             Use this annotation to specify a type that contains static or const fields
             with values for the annotated property/field/parameter.
             The specified type will be used to improve completion suggestions.
             </summary>
             <example><code>
             namespace TestNamespace
             {
               public class Constants
               {
                 public static int INT_CONST = 1;
                 public const string STRING_CONST = "1";
               }
            
               public class Class1
               {
                 [ValueProvider("TestNamespace.Constants")] public int myField;
                 public void Foo([ValueProvider("TestNamespace.Constants")] string str) { }
            
                 public void Test()
                 {
                   Foo(/*try completion here*/);//
                   myField = /*try completion here*/
                 }
               }
             }
             </code></example>
        </member>
        <member name="T:JetBrains.Annotations.ValueRangeAttribute">
            <summary>
            Indicates that the integral value falls into the specified interval.
            It's allowed to specify multiple non-intersecting intervals.
            Values of interval boundaries are inclusive.
            </summary>
            <example><code>
            void Foo([ValueRange(0, 100)] int value) {
              if (value == -1) { // Warning: Expression is always 'false'
                ...
              }
            }
            </code></example>
        </member>
        <member name="T:JetBrains.Annotations.NonNegativeValueAttribute">
            <summary>
            Indicates that the integral value never falls below zero.
            </summary>
            <example><code>
            void Foo([NonNegativeValue] int value) {
              if (value == -1) { // Warning: Expression is always 'false'
                ...
              }
            }
            </code></example>
        </member>
        <member name="T:JetBrains.Annotations.InvokerParameterNameAttribute">
            <summary>
            Indicates that the function argument should be a string literal and match one
            of the parameters of the caller function. For example, ReSharper annotates
            the parameter of <see cref="T:System.ArgumentNullException"/>.
            </summary>
            <example><code>
            void Foo(string param) {
              if (param == null)
                throw new ArgumentNullException("par"); // Warning: Cannot resolve symbol
            }
            </code></example>
        </member>
        <member name="T:JetBrains.Annotations.NotifyPropertyChangedInvocatorAttribute">
             <summary>
             Indicates that the method is contained in a type that implements
             <c>System.ComponentModel.INotifyPropertyChanged</c> interface and this method
             is used to notify that some property value changed.
             </summary>
             <remarks>
             The method should be non-static and conform to one of the supported signatures:
             <list>
             <item><c>NotifyChanged(string)</c></item>
             <item><c>NotifyChanged(params string[])</c></item>
             <item><c>NotifyChanged{T}(Expression{Func{T}})</c></item>
             <item><c>NotifyChanged{T,U}(Expression{Func{T,U}})</c></item>
             <item><c>SetProperty{T}(ref T, T, string)</c></item>
             </list>
             </remarks>
             <example><code>
             public class Foo : INotifyPropertyChanged {
               public event PropertyChangedEventHandler PropertyChanged;
             
               [NotifyPropertyChangedInvocator]
               protected virtual void NotifyChanged(string propertyName) { ... }
            
               string _name;
             
               public string Name {
                 get { return _name; }
                 set { _name = value; NotifyChanged("LastName"); /* Warning */ }
               }
             }
             </code>
             Examples of generated notifications:
             <list>
             <item><c>NotifyChanged("Property")</c></item>
             <item><c>NotifyChanged(() =&gt; Property)</c></item>
             <item><c>NotifyChanged((VM x) =&gt; x.Property)</c></item>
             <item><c>SetProperty(ref myField, value, "Property")</c></item>
             </list>
             </example>
        </member>
        <member name="T:JetBrains.Annotations.ContractAnnotationAttribute">
            <summary>
            Describes dependency between method input and output.
            </summary>
            <syntax>
            <p>Function Definition Table syntax:</p>
            <list>
            <item>FDT      ::= FDTRow [;FDTRow]*</item>
            <item>FDTRow   ::= Input =&gt; Output | Output &lt;= Input</item>
            <item>Input    ::= ParameterName: Value [, Input]*</item>
            <item>Output   ::= [ParameterName: Value]* {halt|stop|void|nothing|Value}</item>
            <item>Value    ::= true | false | null | notnull | canbenull</item>
            </list>
            If the method has a single input parameter, its name could be omitted.<br/>
            Using <c>halt</c> (or <c>void</c>/<c>nothing</c>, which is the same) for the method output
            means that the method doesn't return normally (throws or terminates the process).<br/>
            Value <c>canbenull</c> is only applicable for output parameters.<br/>
            You can use multiple <c>[ContractAnnotation]</c> for each FDT row, or use single attribute
            with rows separated by the semicolon. There is no notion of order rows, all rows are checked
            for applicability and applied per each program state tracked by the analysis engine.<br/>
            </syntax>
            <examples><list>
            <item><code>
            [ContractAnnotation("=&gt; halt")]
            public void TerminationMethod()
            </code></item>
            <item><code>
            [ContractAnnotation("null &lt;= param:null")] // reverse condition syntax
            public string GetName(string surname)
            </code></item>
            <item><code>
            [ContractAnnotation("s:null =&gt; true")]
            public bool IsNullOrEmpty(string s) // string.IsNullOrEmpty()
            </code></item>
            <item><code>
            // A method that returns null if the parameter is null,
            // and not null if the parameter is not null
            [ContractAnnotation("null =&gt; null; notnull =&gt; notnull")]
            public object Transform(object data)
            </code></item>
            <item><code>
            [ContractAnnotation("=&gt; true, result: notnull; =&gt; false, result: null")]
            public bool TryParse(string s, out Person result)
            </code></item>
            </list></examples>
        </member>
        <member name="T:JetBrains.Annotations.LocalizationRequiredAttribute">
            <summary>
            Indicates whether the marked element should be localized.
            </summary>
            <example><code>
            [LocalizationRequiredAttribute(true)]
            class Foo {
              string str = "my string"; // Warning: Localizable string
            }
            </code></example>
        </member>
        <member name="T:JetBrains.Annotations.CannotApplyEqualityOperatorAttribute">
            <summary>
            Indicates that the value of the marked type (or its derivatives)
            cannot be compared using '==' or '!=' operators and <c>Equals()</c>
            should be used instead. However, using '==' or '!=' for comparison
            with <c>null</c> is always permitted.
            </summary>
            <example><code>
            [CannotApplyEqualityOperator]
            class NoEquality { }
            
            class UsesNoEquality {
              void Test() {
                var ca1 = new NoEquality();
                var ca2 = new NoEquality();
                if (ca1 != null) { // OK
                  bool condition = ca1 == ca2; // Warning
                }
              }
            }
            </code></example>
        </member>
        <member name="T:JetBrains.Annotations.BaseTypeRequiredAttribute">
            <summary>
            When applied to a target attribute, specifies a requirement for any type marked
            with the target attribute to implement or inherit specific type or types.
            </summary>
            <example><code>
            [BaseTypeRequired(typeof(IComponent)] // Specify requirement
            class ComponentAttribute : Attribute { }
            
            [Component] // ComponentAttribute requires implementing IComponent interface
            class MyComponent : IComponent { }
            </code></example>
        </member>
        <member name="T:JetBrains.Annotations.UsedImplicitlyAttribute">
            <summary>
            Indicates that the marked symbol is used implicitly (e.g. via reflection, in external library),
            so this symbol will be ignored by usage-checking inspections. <br/>
            You can use <see cref="T:JetBrains.Annotations.ImplicitUseKindFlags"/> and <see cref="T:JetBrains.Annotations.ImplicitUseTargetFlags"/>
            to configure how this attribute is applied.
            </summary>
            <example><code>
            [UsedImplicitly]
            public class TypeConverter {}
            
            public class SummaryData
            {
              [UsedImplicitly(ImplicitUseKindFlags.InstantiatedWithFixedConstructorSignature)]
              public SummaryData() {}
            }
            
            [UsedImplicitly(ImplicitUseTargetFlags.WithInheritors | ImplicitUseTargetFlags.Default)]
            public interface IService {}
            </code></example>
        </member>
        <member name="T:JetBrains.Annotations.MeansImplicitUseAttribute">
            <summary>
            Can be applied to attributes, type parameters, and parameters of a type assignable from <see cref="T:System.Type"/> .
            When applied to an attribute, the decorated attribute behaves the same as <see cref="T:JetBrains.Annotations.UsedImplicitlyAttribute"/>.
            When applied to a type parameter or to a parameter of type <see cref="T:System.Type"/>,
            indicates that the corresponding type is used implicitly.
            </summary>
        </member>
        <member name="T:JetBrains.Annotations.ImplicitUseKindFlags">
            <summary>
            Specifies the details of implicitly used symbol when it is marked
            with <see cref="T:JetBrains.Annotations.MeansImplicitUseAttribute"/> or <see cref="T:JetBrains.Annotations.UsedImplicitlyAttribute"/>.
            </summary>
        </member>
        <member name="F:JetBrains.Annotations.ImplicitUseKindFlags.Access">
            <summary>Only entity marked with attribute considered used.</summary>
        </member>
        <member name="F:JetBrains.Annotations.ImplicitUseKindFlags.Assign">
            <summary>Indicates implicit assignment to a member.</summary>
        </member>
        <member name="F:JetBrains.Annotations.ImplicitUseKindFlags.InstantiatedWithFixedConstructorSignature">
            <summary>
            Indicates implicit instantiation of a type with fixed constructor signature.
            That means any unused constructor parameters won't be reported as such.
            </summary>
        </member>
        <member name="F:JetBrains.Annotations.ImplicitUseKindFlags.InstantiatedNoFixedConstructorSignature">
            <summary>Indicates implicit instantiation of a type.</summary>
        </member>
        <member name="T:JetBrains.Annotations.ImplicitUseTargetFlags">
            <summary>
            Specifies what is considered to be used implicitly when marked
            with <see cref="T:JetBrains.Annotations.MeansImplicitUseAttribute"/> or <see cref="T:JetBrains.Annotations.UsedImplicitlyAttribute"/>.
            </summary>
        </member>
        <member name="F:JetBrains.Annotations.ImplicitUseTargetFlags.Members">
            <summary>Members of the type marked with the attribute are considered used.</summary>
        </member>
        <member name="F:JetBrains.Annotations.ImplicitUseTargetFlags.WithInheritors">
            <summary> Inherited entities are considered used. </summary>
        </member>
        <member name="F:JetBrains.Annotations.ImplicitUseTargetFlags.WithMembers">
            <summary>Entity marked with the attribute and all its members considered used.</summary>
        </member>
        <member name="T:JetBrains.Annotations.PublicAPIAttribute">
            <summary>
            This attribute is intended to mark publicly available API,
            which should not be removed and so is treated as used.
            </summary>
        </member>
        <member name="T:JetBrains.Annotations.InstantHandleAttribute">
            <summary>
            Tells the code analysis engine if the parameter is completely handled when the invoked method is on stack.
            If the parameter is a delegate, indicates that delegate can only be invoked during method execution
            (the delegate can be invoked zero or multiple times, but not stored to some field and invoked later,
            when the containing method is no longer on the execution stack).
            If the parameter is an enumerable, indicates that it is enumerated while the method is executed.
            If <see cref="P:JetBrains.Annotations.InstantHandleAttribute.RequireAwait"/> is true, the attribute will only takes effect if the method invocation is located under the 'await' expression.
            </summary>
        </member>
        <member name="P:JetBrains.Annotations.InstantHandleAttribute.RequireAwait">
            <summary>
            Require the method invocation to be used under the 'await' expression for this attribute to take effect on code analysis engine.
            Can be used for delegate/enumerable parameters of 'async' methods.
            </summary>
        </member>
        <member name="T:JetBrains.Annotations.PureAttribute">
            <summary>
            Indicates that a method does not make any observable state changes.
            The same as <c>System.Diagnostics.Contracts.PureAttribute</c>.
            </summary>
            <example><code>
            [Pure] int Multiply(int x, int y) => x * y;
            
            void M() {
              Multiply(123, 42); // Warning: Return value of pure method is not used
            }
            </code></example>
        </member>
        <member name="T:JetBrains.Annotations.MustUseReturnValueAttribute">
            <summary>
            Indicates that the return value of the method invocation must be used.
            </summary>
            <remarks>
            Methods decorated with this attribute (in contrast to pure methods) might change state,
            but make no sense without using their return value. <br/>
            Similarly to <see cref="T:JetBrains.Annotations.PureAttribute"/>, this attribute
            will help to detect usages of the method when the return value is not used.
            Optionally, you can specify a message to use when showing warnings, e.g.
            <code>[MustUseReturnValue("Use the return value to...")]</code>.
            </remarks>
        </member>
        <member name="T:JetBrains.Annotations.RequireStaticDelegateAttribute">
            <summary>
            This annotation allows to enforce allocation-less usage patterns of delegates for performance-critical APIs.
            When this annotation is applied to the parameter of delegate type, IDE checks the input argument of this parameter:
            * When lambda expression or anonymous method is passed as an argument, IDE verifies that the passed closure
              has no captures of the containing local variables and the compiler is able to cache the delegate instance
              to avoid heap allocations. Otherwise the warning is produced.
            * IDE warns when method name or local function name is passed as an argument as this always results
              in heap allocation of the delegate instance.
            </summary>
            <remarks>
            In C# 9.0 code IDE would also suggest to annotate the anonymous function with 'static' modifier
            to make use of the similar analysis provided by the language/compiler.
            </remarks>
        </member>
        <member name="T:JetBrains.Annotations.ProvidesContextAttribute">
            <summary>
            Indicates the type member or parameter of some type, that should be used instead of all other ways
            to get the value of that type. This annotation is useful when you have some "context" value evaluated
            and stored somewhere, meaning that all other ways to get this value must be consolidated with existing one.
            </summary>
            <example><code>
            class Foo {
              [ProvidesContext] IBarService _barService = ...;
            
              void ProcessNode(INode node) {
                DoSomething(node, node.GetGlobalServices().Bar);
                //              ^ Warning: use value of '_barService' field
              }
            }
            </code></example>
        </member>
        <member name="T:JetBrains.Annotations.PathReferenceAttribute">
            <summary>
            Indicates that a parameter is a path to a file or a folder within a web project.
            Path can be relative or absolute, starting from web root (~).
            </summary>
        </member>
        <member name="T:JetBrains.Annotations.SourceTemplateAttribute">
            <summary>
            An extension method marked with this attribute is processed by code completion
            as a 'Source Template'. When the extension method is completed over some expression, its source code
            is automatically expanded like a template at call site.
            </summary>
            <remarks>
            Template method body can contain valid source code and/or special comments starting with '$'.
            Text inside these comments is added as source code when the template is applied. Template parameters
            can be used either as additional method parameters or as identifiers wrapped in two '$' signs.
            Use the <see cref="T:JetBrains.Annotations.MacroAttribute"/> attribute to specify macros for parameters.
            </remarks>
            <example>
            In this example, the 'forEach' method is a source template available over all values
            of enumerable types, producing ordinary C# 'foreach' statement and placing caret inside block:
            <code>
            [SourceTemplate]
            public static void forEach&lt;T&gt;(this IEnumerable&lt;T&gt; xs) {
              foreach (var x in xs) {
                 //$ $END$
              }
            }
            </code>
            </example>
        </member>
        <member name="T:JetBrains.Annotations.MacroAttribute">
            <summary>
            Allows specifying a macro for a parameter of a <see cref="T:JetBrains.Annotations.SourceTemplateAttribute">source template</see>.
            </summary>
            <remarks>
            You can apply the attribute on the whole method or on any of its additional parameters. The macro expression
            is defined in the <see cref="P:JetBrains.Annotations.MacroAttribute.Expression"/> property. When applied on a method, the target
            template parameter is defined in the <see cref="P:JetBrains.Annotations.MacroAttribute.Target"/> property. To apply the macro silently
            for the parameter, set the <see cref="P:JetBrains.Annotations.MacroAttribute.Editable"/> property value = -1.
            </remarks>
            <example>
            Applying the attribute on a source template method:
            <code>
            [SourceTemplate, Macro(Target = "item", Expression = "suggestVariableName()")]
            public static void forEach&lt;T&gt;(this IEnumerable&lt;T&gt; collection) {
              foreach (var item in collection) {
                //$ $END$
              }
            }
            </code>
            Applying the attribute on a template method parameter:
            <code>
            [SourceTemplate]
            public static void something(this Entity x, [Macro(Expression = "guid()", Editable = -1)] string newguid) {
              /*$ var $x$Id = "$newguid$" + x.ToString();
              x.DoSomething($x$Id); */
            }
            </code>
            </example>
        </member>
        <member name="P:JetBrains.Annotations.MacroAttribute.Expression">
            <summary>
            Allows specifying a macro that will be executed for a <see cref="T:JetBrains.Annotations.SourceTemplateAttribute">source template</see>
            parameter when the template is expanded.
            </summary>
        </member>
        <member name="P:JetBrains.Annotations.MacroAttribute.Editable">
            <summary>
            Allows specifying which occurrence of the target parameter becomes editable when the template is deployed.
            </summary>
            <remarks>
            If the target parameter is used several times in the template, only one occurrence becomes editable;
            other occurrences are changed synchronously. To specify the zero-based index of the editable occurrence,
            use values >= 0. To make the parameter non-editable when the template is expanded, use -1.
            </remarks>
        </member>
        <member name="P:JetBrains.Annotations.MacroAttribute.Target">
            <summary>
            Identifies the target parameter of a <see cref="T:JetBrains.Annotations.SourceTemplateAttribute">source template</see> if the
            <see cref="T:JetBrains.Annotations.MacroAttribute"/> is applied on a template method.
            </summary>
        </member>
        <member name="T:JetBrains.Annotations.AspMvcActionAttribute">
            <summary>
            ASP.NET MVC attribute. If applied to a parameter, indicates that the parameter
            is an MVC action. If applied to a method, the MVC action name is calculated
            implicitly from the context. Use this attribute for custom wrappers similar to
            <c>System.Web.Mvc.Html.ChildActionExtensions.RenderAction(HtmlHelper, String)</c>.
            </summary>
        </member>
        <member name="T:JetBrains.Annotations.AspMvcAreaAttribute">
            <summary>
            ASP.NET MVC attribute. Indicates that the marked parameter is an MVC area.
            Use this attribute for custom wrappers similar to
            <c>System.Web.Mvc.Html.ChildActionExtensions.RenderAction(HtmlHelper, String)</c>.
            </summary>
        </member>
        <member name="T:JetBrains.Annotations.AspMvcControllerAttribute">
            <summary>
            ASP.NET MVC attribute. If applied to a parameter, indicates that the parameter is
            an MVC controller. If applied to a method, the MVC controller name is calculated
            implicitly from the context. Use this attribute for custom wrappers similar to
            <c>System.Web.Mvc.Html.ChildActionExtensions.RenderAction(HtmlHelper, String, String)</c>.
            </summary>
        </member>
        <member name="T:JetBrains.Annotations.AspMvcMasterAttribute">
            <summary>
            ASP.NET MVC attribute. Indicates that the marked parameter is an MVC Master. Use this attribute
            for custom wrappers similar to <c>System.Web.Mvc.Controller.View(String, String)</c>.
            </summary>
        </member>
        <member name="T:JetBrains.Annotations.AspMvcModelTypeAttribute">
            <summary>
            ASP.NET MVC attribute. Indicates that the marked parameter is an MVC model type. Use this attribute
            for custom wrappers similar to <c>System.Web.Mvc.Controller.View(String, Object)</c>.
            </summary>
        </member>
        <member name="T:JetBrains.Annotations.AspMvcPartialViewAttribute">
            <summary>
            ASP.NET MVC attribute. If applied to a parameter, indicates that the parameter is an MVC
            partial view. If applied to a method, the MVC partial view name is calculated implicitly
            from the context. Use this attribute for custom wrappers similar to
            <c>System.Web.Mvc.Html.RenderPartialExtensions.RenderPartial(HtmlHelper, String)</c>.
            </summary>
        </member>
        <member name="T:JetBrains.Annotations.AspMvcSuppressViewErrorAttribute">
            <summary>
            ASP.NET MVC attribute. Allows disabling inspections for MVC views within a class or a method.
            </summary>
        </member>
        <member name="T:JetBrains.Annotations.AspMvcDisplayTemplateAttribute">
            <summary>
            ASP.NET MVC attribute. Indicates that a parameter is an MVC display template.
            Use this attribute for custom wrappers similar to
            <c>System.Web.Mvc.Html.DisplayExtensions.DisplayForModel(HtmlHelper, String)</c>.
            </summary>
        </member>
        <member name="T:JetBrains.Annotations.AspMvcEditorTemplateAttribute">
            <summary>
            ASP.NET MVC attribute. Indicates that the marked parameter is an MVC editor template.
            Use this attribute for custom wrappers similar to
            <c>System.Web.Mvc.Html.EditorExtensions.EditorForModel(HtmlHelper, String)</c>.
            </summary>
        </member>
        <member name="T:JetBrains.Annotations.AspMvcTemplateAttribute">
            <summary>
            ASP.NET MVC attribute. Indicates that the marked parameter is an MVC template.
            Use this attribute for custom wrappers similar to
            <c>System.ComponentModel.DataAnnotations.UIHintAttribute(System.String)</c>.
            </summary>
        </member>
        <member name="T:JetBrains.Annotations.AspMvcViewAttribute">
            <summary>
            ASP.NET MVC attribute. If applied to a parameter, indicates that the parameter
            is an MVC view component. If applied to a method, the MVC view name is calculated implicitly
            from the context. Use this attribute for custom wrappers similar to
            <c>System.Web.Mvc.Controller.View(Object)</c>.
            </summary>
        </member>
        <member name="T:JetBrains.Annotations.AspMvcViewComponentAttribute">
            <summary>
            ASP.NET MVC attribute. If applied to a parameter, indicates that the parameter
            is an MVC view component name.
            </summary>
        </member>
        <member name="T:JetBrains.Annotations.AspMvcViewComponentViewAttribute">
            <summary>
            ASP.NET MVC attribute. If applied to a parameter, indicates that the parameter
            is an MVC view component view. If applied to a method, the MVC view component view name is default.
            </summary>
        </member>
        <member name="T:JetBrains.Annotations.AspMvcActionSelectorAttribute">
            <summary>
            ASP.NET MVC attribute. When applied to a parameter of an attribute,
            indicates that this parameter is an MVC action name.
            </summary>
            <example><code>
            [ActionName("Foo")]
            public ActionResult Login(string returnUrl) {
              ViewBag.ReturnUrl = Url.Action("Foo"); // OK
              return RedirectToAction("Bar"); // Error: Cannot resolve action
            }
            </code></example>
        </member>
        <member name="T:JetBrains.Annotations.RazorSectionAttribute">
            <summary>
            Razor attribute. Indicates that the marked parameter or method is a Razor section.
            Use this attribute for custom wrappers similar to
            <c>System.Web.WebPages.WebPageBase.RenderSection(String)</c>.
            </summary>
        </member>
        <member name="T:JetBrains.Annotations.CollectionAccessAttribute">
            <summary>
            Indicates how method, constructor invocation, or property access
            over collection type affects the contents of the collection.
            When applied to a return value of a method indicates if the returned collection
            is created exclusively for the caller (CollectionAccessType.UpdatedContent) or
            can be read/updated from outside (CollectionAccessType.Read | CollectionAccessType.UpdatedContent)
            Use <see cref="P:JetBrains.Annotations.CollectionAccessAttribute.CollectionAccessType"/> to specify the access type.
            </summary>
            <remarks>
            Using this attribute only makes sense if all collection methods are marked with this attribute.
            </remarks>
            <example><code>
            public class MyStringCollection : List&lt;string&gt;
            {
              [CollectionAccess(CollectionAccessType.Read)]
              public string GetFirstString()
              {
                return this.ElementAt(0);
              }
            }
            class Test
            {
              public void Foo()
              {
                // Warning: Contents of the collection is never updated
                var col = new MyStringCollection();
                string x = col.GetFirstString();
              }
            }
            </code></example>
        </member>
        <member name="T:JetBrains.Annotations.CollectionAccessType">
            <summary>
            Provides a value for the <see cref="T:JetBrains.Annotations.CollectionAccessAttribute"/> to define
            how the collection method invocation affects the contents of the collection.
            </summary>
        </member>
        <member name="F:JetBrains.Annotations.CollectionAccessType.None">
            <summary>Method does not use or modify content of the collection.</summary>
        </member>
        <member name="F:JetBrains.Annotations.CollectionAccessType.Read">
            <summary>Method only reads content of the collection but does not modify it.</summary>
        </member>
        <member name="F:JetBrains.Annotations.CollectionAccessType.ModifyExistingContent">
            <summary>Method can change content of the collection but does not add new elements.</summary>
        </member>
        <member name="F:JetBrains.Annotations.CollectionAccessType.UpdatedContent">
            <summary>Method can add new elements to the collection.</summary>
        </member>
        <member name="T:JetBrains.Annotations.AssertionMethodAttribute">
            <summary>
            Indicates that the marked method is assertion method, i.e. it halts the control flow if
            one of the conditions is satisfied. To set the condition, mark one of the parameters with
            <see cref="T:JetBrains.Annotations.AssertionConditionAttribute"/> attribute.
            </summary>
        </member>
        <member name="T:JetBrains.Annotations.AssertionConditionAttribute">
            <summary>
            Indicates the condition parameter of the assertion method. The method itself should be
            marked by <see cref="T:JetBrains.Annotations.AssertionMethodAttribute"/> attribute. The mandatory argument of
            the attribute is the assertion type.
            </summary>
        </member>
        <member name="T:JetBrains.Annotations.AssertionConditionType">
            <summary>
            Specifies assertion type. If the assertion method argument satisfies the condition,
            then the execution continues. Otherwise, execution is assumed to be halted.
            </summary>
        </member>
        <member name="F:JetBrains.Annotations.AssertionConditionType.IS_TRUE">
            <summary>Marked parameter should be evaluated to true.</summary>
        </member>
        <member name="F:JetBrains.Annotations.AssertionConditionType.IS_FALSE">
            <summary>Marked parameter should be evaluated to false.</summary>
        </member>
        <member name="F:JetBrains.Annotations.AssertionConditionType.IS_NULL">
            <summary>Marked parameter should be evaluated to null value.</summary>
        </member>
        <member name="F:JetBrains.Annotations.AssertionConditionType.IS_NOT_NULL">
            <summary>Marked parameter should be evaluated to not null value.</summary>
        </member>
        <member name="T:JetBrains.Annotations.TerminatesProgramAttribute">
            <summary>
            Indicates that the marked method unconditionally terminates control flow execution.
            For example, it could unconditionally throw exception.
            </summary>
        </member>
        <member name="T:JetBrains.Annotations.LinqTunnelAttribute">
            <summary>
            Indicates that the method is a pure LINQ method, with postponed enumeration (like Enumerable.Select,
            .Where). This annotation allows inference of [InstantHandle] annotation for parameters
            of delegate type by analyzing LINQ method chains.
            </summary>
        </member>
        <member name="T:JetBrains.Annotations.NoEnumerationAttribute">
            <summary>
            Indicates that IEnumerable passed as a parameter is not enumerated.
            Use this annotation to suppress the 'Possible multiple enumeration of IEnumerable' inspection.
            </summary>
            <example><code>
            static void ThrowIfNull&lt;T&gt;([NoEnumeration] T v, string n) where T : class
            {
              // custom check for null but no enumeration
            }
            
            void Foo(IEnumerable&lt;string&gt; values)
            {
              ThrowIfNull(values, nameof(values));
              var x = values.ToList(); // No warnings about multiple enumeration
            }
            </code></example>
        </member>
        <member name="T:JetBrains.Annotations.RegexPatternAttribute">
            <summary>
            Indicates that the marked parameter, field, or property is a regular expression pattern.
            </summary>
        </member>
        <member name="T:JetBrains.Annotations.InjectedLanguage">
            <summary>
            Language of injected code fragment inside marked by <see cref="T:JetBrains.Annotations.LanguageInjectionAttribute"/> string literal.
            </summary>
        </member>
        <member name="T:JetBrains.Annotations.LanguageInjectionAttribute">
            <summary>
            Indicates that the marked parameter, field, or property is accepting a string literal
            containing code fragment in a language specified by the <see cref="P:JetBrains.Annotations.LanguageInjectionAttribute.InjectedLanguage"/>.
            </summary>
            <example><code>
            void Foo([LanguageInjection(InjectedLanguage.CSS, Prefix = "body{", Suffix = "}")] string cssProps)
            {
              // cssProps should only contains a list of CSS properties
            }
            </code></example>
        </member>
        <member name="P:JetBrains.Annotations.LanguageInjectionAttribute.InjectedLanguage">
            <summary>Specify a language of injected code fragment.</summary>
        </member>
        <member name="P:JetBrains.Annotations.LanguageInjectionAttribute.Prefix">
            <summary>Specify a string that "precedes" injected string literal.</summary>
        </member>
        <member name="P:JetBrains.Annotations.LanguageInjectionAttribute.Suffix">
            <summary>Specify a string that "follows" injected string literal.</summary>
        </member>
        <member name="T:JetBrains.Annotations.NoReorderAttribute">
            <summary>
            Prevents the Member Reordering feature from tossing members of the marked class.
            </summary>
            <remarks>
            The attribute must be mentioned in your member reordering patterns.
            </remarks>
        </member>
        <member name="T:JetBrains.Annotations.XamlItemsControlAttribute">
            <summary>
            XAML attribute. Indicates the type that has <c>ItemsSource</c> property and should be treated
            as <c>ItemsControl</c>-derived type, to enable inner items <c>DataContext</c> type resolve.
            </summary>
        </member>
        <member name="T:JetBrains.Annotations.XamlItemBindingOfItemsControlAttribute">
            <summary>
            XAML attribute. Indicates the property of some <c>BindingBase</c>-derived type, that
            is used to bind some item of <c>ItemsControl</c>-derived type. This annotation will
            enable the <c>DataContext</c> type resolve for XAML bindings for such properties.
            </summary>
            <remarks>
            Property should have the tree ancestor of the <c>ItemsControl</c> type or
            marked with the <see cref="T:JetBrains.Annotations.XamlItemsControlAttribute"/> attribute.
            </remarks>
        </member>
        <member name="T:JetBrains.Annotations.XamlItemStyleOfItemsControlAttribute">
            <summary>
            XAML attribute. Indicates the property of some <c>Style</c>-derived type, that
            is used to style items of <c>ItemsControl</c>-derived type. This annotation will
            enable the <c>DataContext</c> type resolve for XAML bindings for such properties.
            </summary>
            <remarks>
            Property should have the tree ancestor of the <c>ItemsControl</c> type or
            marked with the <see cref="T:JetBrains.Annotations.XamlItemsControlAttribute"/> attribute.
            </remarks>
        </member>
        <member name="T:JetBrains.Annotations.XamlOneWayBindingModeByDefaultAttribute">
            <summary>
            XAML attribute. Indicates that DependencyProperty has <c>OneWay</c> binding mode by default.
            </summary>
            <remarks>
            This attribute must be applied to DependencyProperty's CLR accessor property if it is present, to DependencyProperty descriptor field otherwise.
            </remarks>
        </member>
        <member name="T:JetBrains.Annotations.XamlTwoWayBindingModeByDefaultAttribute">
            <summary>
            XAML attribute. Indicates that DependencyProperty has <c>TwoWay</c> binding mode by default.
            </summary>
            <remarks>
            This attribute must be applied to DependencyProperty's CLR accessor property if it is present, to DependencyProperty descriptor field otherwise.
            </remarks>
        </member>
        <member name="T:JetBrains.Annotations.RouteTemplateAttribute">
            <summary>
            Indicates that the marked parameter, field, or property is a route template.
            </summary>
            <remarks>
            This attribute allows IDE to recognize the use of web frameworks' route templates
            to enable syntax highlighting, code completion, navigation, rename and other features in string literals.
            </remarks>
        </member>
        <member name="T:JetBrains.Annotations.RouteParameterConstraintAttribute">
            <summary>
            Indicates that the marked type is custom route parameter constraint,
            which is registered in application's Startup with name <c>ConstraintName</c>
            </summary>
            <remarks>
            You can specify <c>ProposedType</c> if target constraint matches only route parameters of specific type,
            it will allow IDE to create method's parameter from usage in route template
            with specified type instead of default <c>System.String</c>
            and check if constraint's proposed type conflicts with matched parameter's type
            </remarks>
        </member>
        <member name="T:JetBrains.Annotations.UriStringAttribute">
            <summary>
            Indicates that the marked parameter, field, or property is an URI string.
            </summary>
            <remarks>
            This attribute enables code completion, navigation, rename and other features
            in URI string literals assigned to annotated parameter, field or property.
            </remarks>
        </member>
        <member name="T:JetBrains.Annotations.CodeTemplateAttribute">
            <summary>
            <para>
            Defines the code search template using the Structural Search and Replace syntax.
            It allows you to find and, if necessary, replace blocks of code that match a specific pattern.
            Search and replace patterns consist of a textual part and placeholders.
            Textural part must contain only identifiers allowed in the target language and will be matched exactly (white spaces, tabulation characters, and line breaks are ignored).
            Placeholders allow matching variable parts of the target code blocks.
            A placeholder has the following format: $placeholder_name$- where placeholder_name is an arbitrary identifier.
            </para>
            <para>
            Available placeholders:
            <list type="bullet">
            <item>$this$ - expression of containing type</item>
            <item>$thisType$ - containing type</item>
            <item>$member$ - current member placeholder</item>
            <item>$qualifier$ - this placeholder is available in the replace pattern and can be used to insert qualifier expression matched by the $member$ placeholder.
            (Note that if $qualifier$ placeholder is used, then $member$ placeholder will match only qualified references)</item>
            <item>$expression$ - expression of any type</item>
            <item>$identifier$ - identifier placeholder</item>
            <item>$args$ - any number of arguments</item>
            <item>$arg$ - single argument</item>
            <item>$arg1$ ... $arg10$ - single argument</item>
            <item>$stmts$ - any number of statements</item>
            <item>$stmt$ - single statement</item>
            <item>$stmt1$ ... $stmt10$ - single statement</item>
            <item>$name{Expression, 'Namespace.FooType'}$ - expression with 'Namespace.FooType' type</item>
            <item>$expression{'Namespace.FooType'}$ - expression with 'Namespace.FooType' type</item>
            <item>$name{Type, 'Namespace.FooType'}$ - 'Namespace.FooType' type</item>
            <item>$type{'Namespace.FooType'}$ - 'Namespace.FooType' type</item>
            <item>$statement{1,2}$ - 1 or 2 statements</item>
            </list>
            </para>
            <para>
            Note that you can also define your own placeholders of the supported types and specify arguments for each placeholder type.
            This can be done using the following format: $name{type, arguments}$. Where 'name' - is the name of your placeholder,
            'type' - is the type of your placeholder (one of the following: Expression, Type, Identifier, Statement, Argument, Member),
            'arguments' - arguments list for your placeholder. Each placeholder type supports it's own arguments, check examples below for mode details.
            Placeholder type may be omitted and determined from the placeholder name, if name has one of the following prefixes:
            <list type="bullet">
            <item>expr, expression - expression placeholder, e.g. $exprPlaceholder{}$, $expressionFoo{}$</item>
            <item>arg, argument - argument placeholder, e.g. $argPlaceholder{}$, $argumentFoo{}$</item>
            <item>ident, identifier - identifier placeholder, e.g. $identPlaceholder{}$, $identifierFoo{}$</item>
            <item>stmt, statement - statement placeholder, e.g. $stmtPlaceholder{}$, $statementFoo{}$</item>
            <item>type - type placeholder, e.g. $typePlaceholder{}$, $typeFoo{}$</item>
            <item>member - member placeholder, e.g. $memberPlaceholder{}$, $memberFoo{}$</item>
            </list>
            </para>
            <para>
            Expression placeholder arguments:
            <list type="bullet">
            <item>expressionType - string value in single quotes, specifies full type name to match (empty string by default)</item>
            <item>exactType - boolean value, specifies if expression should have exact type match (false by default)</item>
            </list>
            Examples:
            <list type="bullet">
            <item>$myExpr{Expression, 'Namespace.FooType', true}$ - defines expression placeholder, matching expressions of the 'Namespace.FooType' type with exact matching.</item>
            <item>$myExpr{Expression, 'Namespace.FooType'}$ - defines expression placeholder, matching expressions of the 'Namespace.FooType' type or expressions which can be implicitly converted to 'Namespace.FooType'.</item>
            <item>$myExpr{Expression}$ - defines expression placeholder, matching expressions of any type.</item>
            <item>$exprFoo{'Namespace.FooType', true}$ - defines expression placeholder, matching expressions of the 'Namespace.FooType' type with exact matching.</item>
            </list>
            </para>
            <para>
            Type placeholder arguments:
            <list type="bullet">
            <item>type - string value in single quotes, specifies full type name to match (empty string by default)</item>
            <item>exactType - boolean value, specifies if expression should have exact type match (false by default)</item>
            </list>
            Examples:
            <list type="bullet">
            <item>$myType{Type, 'Namespace.FooType', true}$ - defines type placeholder, matching 'Namespace.FooType' types with exact matching.</item>
            <item>$myType{Type, 'Namespace.FooType'}$ - defines type placeholder, matching 'Namespace.FooType' types or types, which can be implicitly converted to 'Namespace.FooType'.</item>
            <item>$myType{Type}$ - defines type placeholder, matching any type.</item>
            <item>$typeFoo{'Namespace.FooType', true}$ - defines types placeholder, matching 'Namespace.FooType' types with exact matching.</item>
            </list>
            </para>
            <para>
            Identifier placeholder arguments:
            <list type="bullet">
            <item>nameRegex - string value in single quotes, specifies regex to use for matching (empty string by default)</item>
            <item>nameRegexCaseSensitive - boolean value, specifies if name regex is case sensitive (true by default)</item>
            <item>type - string value in single quotes, specifies full type name to match (empty string by default)</item>
            <item>exactType - boolean value, specifies if expression should have exact type match (false by default)</item>
            </list>
            Examples:
            <list type="bullet">
            <item>$myIdentifier{Identifier, 'my.*', false, 'Namespace.FooType', true}$ - defines identifier placeholder, matching identifiers (ignoring case) starting with 'my' prefix with 'Namespace.FooType' type.</item>
            <item>$myIdentifier{Identifier, 'my.*', true, 'Namespace.FooType', true}$ - defines identifier placeholder, matching identifiers (case sensitively) starting with 'my' prefix with 'Namespace.FooType' type.</item>
            <item>$identFoo{'my.*'}$ - defines identifier placeholder, matching identifiers (case sensitively) starting with 'my' prefix.</item>
            </list>
            </para>
            <para>
            Statement placeholder arguments:
            <list type="bullet">
            <item>minimalOccurrences - minimal number of statements to match (-1 by default)</item>
            <item>maximalOccurrences - maximal number of statements to match (-1 by default)</item>
            </list>
            Examples:
            <list type="bullet">
            <item>$myStmt{Statement, 1, 2}$ - defines statement placeholder, matching 1 or 2 statements.</item>
            <item>$myStmt{Statement}$ - defines statement placeholder, matching any number of statements.</item>
            <item>$stmtFoo{1, 2}$ - defines statement placeholder, matching 1 or 2 statements.</item>
            </list>
            </para>
            <para>
            Argument placeholder arguments:
            <list type="bullet">
            <item>minimalOccurrences - minimal number of arguments to match (-1 by default)</item>
            <item>maximalOccurrences - maximal number of arguments to match (-1 by default)</item>
            </list>
            Examples:
            <list type="bullet">
            <item>$myArg{Argument, 1, 2}$ - defines argument placeholder, matching 1 or 2 arguments.</item>
            <item>$myArg{Argument}$ - defines argument placeholder, matching any number of arguments.</item>
            <item>$argFoo{1, 2}$ - defines argument placeholder, matching 1 or 2 arguments.</item>
            </list>
            </para>
            <para>
            Member placeholder arguments:
            <list type="bullet">
            <item>docId - string value in single quotes, specifies XML documentation id of the member to match (empty by default)</item>
            </list>
            Examples:
            <list type="bullet">
            <item>$myMember{Member, 'M:System.String.IsNullOrEmpty(System.String)'}$ - defines member placeholder, matching 'IsNullOrEmpty' member of the 'System.String' type.</item>
            <item>$memberFoo{'M:System.String.IsNullOrEmpty(System.String)'}$ - defines member placeholder, matching 'IsNullOrEmpty' member of the 'System.String' type.</item>
            </list>
            </para>
            <para>
            For more information please refer to the <a href="https://www.jetbrains.com/help/resharper/Navigation_and_Search__Structural_Search_and_Replace.html">Structural Search and Replace</a> article.
            </para>
            </summary>
        </member>
        <member name="P:JetBrains.Annotations.CodeTemplateAttribute.SearchTemplate">
            <summary>
            Structural search pattern to use in the code template.
            Pattern includes textual part, which must contain only identifiers allowed in the target language,
            and placeholders, which allow matching variable parts of the target code blocks.
            </summary>
        </member>
        <member name="P:JetBrains.Annotations.CodeTemplateAttribute.Message">
            <summary>
            Message to show when the search pattern was found.
            You can also prepend the message text with "Error:", "Warning:", "Suggestion:" or "Hint:" prefix to specify the pattern severity.
            Code patterns with replace template produce suggestions by default.
            However, if replace template is not provided, then warning severity will be used.
            </summary>
        </member>
        <member name="P:JetBrains.Annotations.CodeTemplateAttribute.ReplaceTemplate">
            <summary>
            Structural search replace pattern to use in code template replacement.
            </summary>
        </member>
        <member name="P:JetBrains.Annotations.CodeTemplateAttribute.ReplaceMessage">
            <summary>
            Replace message to show in the light bulb.
            </summary>
        </member>
        <member name="P:JetBrains.Annotations.CodeTemplateAttribute.FormatAfterReplace">
            <summary>
            Apply code formatting after code replacement.
            </summary>
        </member>
        <member name="P:JetBrains.Annotations.CodeTemplateAttribute.MatchSimilarConstructs">
            <summary>
            Whether similar code blocks should be matched.
            </summary>
        </member>
        <member name="P:JetBrains.Annotations.CodeTemplateAttribute.ShortenReferences">
            <summary>
            Automatically insert namespace import directives or remove qualifiers that become redundant after the template is applied.
            </summary>
        </member>
        <member name="P:JetBrains.Annotations.CodeTemplateAttribute.SuppressionKey">
            <summary>
            String to use as a suppression key.
            By default the following suppression key is used 'CodeTemplate_SomeType_SomeMember',
            where 'SomeType' and 'SomeMember' are names of the associated containing type and member to which this attribute is applied.
            </summary>
        </member>
    </members>
</doc>
tools\TfsCmdlets\Lib\Core\de\Microsoft.VisualStudio.Services.Search.WebApi.resources.dll
md5: A619D42FE2B7D36E73FC008B9CD958EB | sha1: 1E37268317AAC48F64DC85B6579127B84CD03F80 | sha256: D11712A09F36E526B572463F659AFF93ED3217495C208E0A77709C2689C0DC89 | sha512: 3B5F0E1793738D8FF78B040E145677D2F8C1F3E2A49B0E66606E1B69500AE8B8E9F7357F1835E921F62757CB50604036F43C5379A86AAC4CF424F4ED34980D4B
tools\TfsCmdlets\Lib\Core\es\Microsoft.VisualStudio.Services.Search.WebApi.resources.dll
md5: 71DA2DE842298E9E89CA83EE72816779 | sha1: 4BE9AC6A16A5AF8F5C438466B478144D75CC9569 | sha256: FD208F4210CB0F8FAA672DFCCED6CC762D486ED99DC069DADD72FAA21DE54ECA | sha512: AAFFBE6FC19211E206A27D03A1822672CF26293C7F28E45B7FAE1C8A86A70EE41B0F887D0A472C7A04E5CA968DB7D2FE8F8DBCDEFED0BE371C73C3158A72D21E
tools\TfsCmdlets\Lib\Core\fr\Microsoft.VisualStudio.Services.Search.WebApi.resources.dll
md5: C59D28752ED5354161ADB5D2F58F6D9E | sha1: D4EDEAA2152045694A349DF70424C59506B191AE | sha256: A75FA2250188B431E959458856977A0A71FFA6361E93B770697820997A2ADBF9 | sha512: ECC61A3FAEEABF61B5F549451A5E7C8DA140E97E51682545C69F5F3A84F61AC8EDDBFD08DFF696F86362F821FD569F626CD1362D660B88053CFEEAC61D0A6578
tools\TfsCmdlets\Lib\Core\it\Microsoft.VisualStudio.Services.Search.WebApi.resources.dll
md5: 7B4632C9984914FD32D3AFF6C4C104F1 | sha1: 09BFD4F9196AF229B322E9A752B997C0F7851642 | sha256: 16C31256F618315D9B844F0AE687482821437CB93A4B24370C811AFE64EEA31E | sha512: 31E10B4A456932B630439BB483269BB50D987884EBEE826FFB277FE19C8A7661602CFC41F509AC196B2EB631AE3A5BBD84E0D28574E43E57B42B9F0548C28F39
tools\TfsCmdlets\Lib\Core\ja\Microsoft.VisualStudio.Services.Search.WebApi.resources.dll
md5: B66EB313CF0279F6F734656B25F90EE8 | sha1: 290908B684A6C9C3F356BB806D4B78306523EDF9 | sha256: 5D46094A45B3FF45E42FE788D426CAFF796342ABFC559334666A68ABB7C90C41 | sha512: 32327786BABA3AA2DEF7E4E0F9877BFA0EABF3B73F186DE734B4ACB8D328108BA8EBECDA92141023993BDDFC44DB75E04D275C47E644F5ED746AF5682688EF23
tools\TfsCmdlets\Lib\Core\ko\Microsoft.VisualStudio.Services.Search.WebApi.resources.dll
md5: 5D9DB72A996EE28577D458E43C0A1AB7 | sha1: BD36390C28B2314E5BCC28887A3A5BBF98F36EA8 | sha256: F9F389AD7024AD7E981C179EA75BA93BE0B429A65D61B2000EC4EC44B6D660E7 | sha512: 6247843525191E0BE29744612A31CA21D2B8BA81DD32E9C46D6AB8809F5B5C5B0C4847EBBE05D35AD4E27121F56C45A3AC7A3962D20562F977CE8D96F5F7B324
tools\TfsCmdlets\Lib\Core\ru\Microsoft.VisualStudio.Services.Search.WebApi.resources.dll
md5: 6891F57E4452AEE699113A6087B6A328 | sha1: 291172FB4765DC208A42DD39B02EA97BF63D20F8 | sha256: A17356E7D66EA83509CF532973A03790D5C975AD49CDF585D2B4FF1214CE52AD | sha512: 1BA38EE89E9D24F8744B546A4748F01180F147268C3F181271A37B9088347668CE3838DC8BA4B2B1DE54F8785A01983848EDCA8DE0DFB55559F5C83D0012DA4B
tools\TfsCmdlets\Lib\Core\runtimes\unix\lib\netcoreapp2.1\System.Security.Principal.Windows.dll
md5: 0035B12417DFD1D22D43D696968CB54F | sha1: 76AE451BE0B87AC0A7CD5DE80EDBE117AE191535 | sha256: F470C7EE0F99F5CEAA25F51970988CFBCDDBE0F8DD8491CA3E9CF4F9F52FDB75 | sha512: 600A2CE00F779D0A2F87CA23CF3C6D280067666879A3978923056B094815830AEA9CABA7A5E32BFC6A0B973C8D2A6D706EEA1F73658EAD840CC05AE705841F43
tools\TfsCmdlets\Lib\Core\runtimes\unix\lib\netstandard2.0\System.Data.SqlClient.dll
md5: 8F5107F61056ED86F410B8ACF88EC6C0 | sha1: 9FEE5097582BCBB87E6A923BFD37FD0E2EA6AE18 | sha256: EEC579A865371394AD8D8D82EC453C268343D90262DA76AC84D51564AF40CCBC | sha512: 9686173C97DF6D36682493CF6BC6846BCC9967D9DCD520BB45B145B58D097B1C116826158D1196001FA9373FDE6AAAE24A3A13A90F5926764EA5D2417021648F
tools\TfsCmdlets\Lib\Core\runtimes\win\lib\netcoreapp2.0\System.Security.AccessControl.dll
md5: 5CA4F84F2270A788FA2BEEF07A4789B1 | sha1: 10471C83F8F24880EDC09CCFDE4464119CA7E9FA | sha256: 94D32FBE707C5A162C1F7E37B092F0EC39F5C03152609A140C9F85AA4F8768EC | sha512: E5B7F40396515DB845E48967F704438EA06359A4E4FF728FE98E44807A935BF44AA0E1C26D1976A4EE8D587F970CDB40F95F0659910FCDA6F8F935968882042A
tools\TfsCmdlets\Lib\Core\runtimes\win\lib\netcoreapp2.1\System.Security.Principal.Windows.dll
md5: E9F61F68DF63CF7AC8353CA16A4DBD26 | sha1: 0B94FA28A00C427536CC948E2B0ECD1F6A67A010 | sha256: 0ADD93A25FD4E011DB55CAC9E7C062B807D98447BC8272CF3A24B06B7437C16C | sha512: 793A139769F93D74B59F7D46846D3023DC46E129C88A6BACE865BE9D97806832433248E65886C8D080E241201AD4AA04B4B664DB42E612AD5408838AFA4AF89E
tools\TfsCmdlets\Lib\Core\runtimes\win\lib\netstandard2.0\Microsoft.Win32.Registry.dll
md5: F775A8103A6034D25FBB2934F5E1B979 | sha1: E449296D1AE86C6417B3067F6AA5108946C5E15A | sha256: 5738F1E014D65979898848781075DB25EEDE1F14D7E38D68CEA6A4C49BC2B2C4 | sha512: 9F52DD9E4CD78FFC240A794752C57158A504071EE45284EE71F93D25B938554C999D60324FDBDBD5B2602429297DF4EF6175DA44B076A7D6AAB1FEAD5A8A53AB
tools\TfsCmdlets\Lib\Core\runtimes\win\lib\netstandard2.0\System.Data.SqlClient.dll
md5: A8B8C130324DA3E7FAB5CB7F3001EBE8 | sha1: 82379C4C9A81D404369B2B89D74498F1CCE26102 | sha256: 0CBF6D2F6BF55A901D4C5E3971725DA1165599A8ED2E6F134F8292FED43E0DCD | sha512: 4AB0EDFAE0DA0F287EEEA99678A8E9381BE871B8F3166F0E22039874E6016B37D8AB3F1E055B61D0C21987CDD735B12DEEBA4EF7826B8923802C8C79B0A00F7F
tools\TfsCmdlets\Lib\Core\runtimes\win-arm64\native\sni.dll
md5: 167136D7A81BCC85ACF4930AA7AC835F | sha1: 1E70240CC820796E78D77B1219291EEE2FB6DBE0 | sha256: EF18458C4DCB93F6B4EAC07E1589CF3450BF878F2DD623F5D34F6A0F1B16E57A | sha512: 2C084142E09AE1B850F8550A55142FBBF996F3DFB122BBCAD4FFFC11A6FDC5417D623683F383C4AC4A35E46EA0D441D82588231093F179FF4601CC598A1C8896
tools\TfsCmdlets\Lib\Core\runtimes\win-arm64\native\WebView2Loader.dll
md5: 77B09BC5430B30954B3FCCA59D37C30E | sha1: DD300AB994DEE7F5C2D2AF8E2F0AA44FD010DF4C | sha256: 11463B6071457A7F0F8CCFCE5D17F3EC985C132B487959C21A75FDECA238676B | sha512: 5FDC211CFF050C7EA6E4B88A52B0D698CEC640D6465F45C817862936FFBA034426AC3904028C7A6FC2672D1BD665BE2F5B95ED76D04DE4574CA99B9606D1FDBA
tools\TfsCmdlets\Lib\Core\runtimes\win-x64\native\sni.dll
md5: 7F1799B65B98450A19E4D049E9D3E70D | sha1: EC80C5A33374423A9E986C383A36A97DA70A3584 | sha256: 68705C4EF9AB818F2956A78E05F3FEFCE501A1448793B073B46110BEB49B47D6 | sha512: 8D67297C5CDED487C88FCAAD5A36E80926DAD8F1863E38F397751056F51258AC7B5A9E5C09C01BBA7A224F38FB2EE719586FAF0BA81516E05A19649EB09E7B78
tools\TfsCmdlets\Lib\Core\runtimes\win-x64\native\WebView2Loader.dll
md5: 6DC5CEAE6EC36DFA3EC1E83DAB381411 | sha1: 7E3B31FAE568914782655A1187382003155F2D93 | sha256: 244B9B08356842A2451FD6F34B56F1134CA2618BD4BA92BB7AC7E8D0A036D7E7 | sha512: F6666B04F98293A96186ABC305BB16DE77B5E3E162A1CDC7E55020195004E0087A978361F548FEC10C1C71906D304E9FD7111713640E220A7CDF61DA8E3C23F5
tools\TfsCmdlets\Lib\Core\runtimes\win-x86\native\sni.dll
md5: C62A83F20BC23AEFACE70EC13003C4C5 | sha1: 35553CFCDCBECCDC49710E68AEC495C16880F0BD | sha256: 1446D6B26DA49A5A9F366972F89F4E236F916955F31DDC38EBB96217C1CACE9C | sha512: 4DDA44FD5B538F5DA9E8CB46A3AB1BDC14B43425B9A61249ECCC925D986AF7B8B3548DB9490238F14807909ECF479415117141DDB344119438A59F97E894EA37
tools\TfsCmdlets\Lib\Core\runtimes\win-x86\native\WebView2Loader.dll
md5: 48F540C05200C510303475E4CF95B557 | sha1: C814CEF05C39ABCBC398F4E83BC120FF012DC803 | sha256: 1CAE7B9AD51235CA43E86F561F4D4968EE81541AEE9F759E24359EBD69EA6EC9 | sha512: 3C05BC448430B17ACAC02F89CA8A8619E220C53640E7D9B9A10CFFDCBCE0CA9558ACBBDA4DB1E6AD946A3891FFF49C3EBA9CF2D619255D8C6D11D4FEFF1A2E9E
tools\TfsCmdlets\Lib\Core\tr\Microsoft.VisualStudio.Services.Search.WebApi.resources.dll
md5: A9431142CF0C1F5CEB8D18E3C989E0EF | sha1: C380360A11FB01831F78955C61787BF039FF409A | sha256: 4674F52F48851360D77D2216419540F5EA9378C545E982CF572D503312245736 | sha512: E237BD3E40A433796D706EE6ADF8CED6817645DB756776408088838DC92CB17E194A54E5E7CCC165294843E44D22B6A2392D7B2543807A68D6413AE5C8DEE2C0
tools\TfsCmdlets\Lib\Core\zh-Hans\Microsoft.VisualStudio.Services.Search.WebApi.resources.dll
md5: 225540E6D15E3FA9D5CE74C64846E684 | sha1: 533E06F4371DA35E46FDE5173F315E1CA6A23C1C | sha256: C66C2F834D3E341C0F171D16A63C5EB73EE4F078FFEEDA709C7A199D498D2B87 | sha512: 720F7C26B20A3B91983E22656A91979BB8B9C06D7D869F63743F8801630D67274B903E35FDCFA39402914B7D2E2C5DA0E075598C54F6DB8455F1F94FEA1385BC
tools\TfsCmdlets\Lib\Core\zh-Hant\Microsoft.VisualStudio.Services.Search.WebApi.resources.dll
md5: B0842AD573994AD23E67F34CF6D4959A | sha1: 094692E8F25B6A60C5D3AE39FF5D984B370B5EDD | sha256: 6DCB895B963681CE25F0BB1B97E7FB0F533319138443259CFC56573FFCA1ACAD | sha512: 0BE9D01CDEE2AF7A872CA757DB6267B66CBEFB543712249D5DC3F3DF39385ADD51187386A88DC7C37B4AD6A5265D086A04EB61E5A3BE65A5CEAA256EB06524F8
tools\TfsCmdlets\Lib\Desktop\HtmlAgilityPack.dll
md5: ADC54151A7A258B79D0787AA89921E05 | sha1: 9F3397531929A704B329D63154B7121627F499AB | sha256: 03C2F5DC7C1754F7E6382D2B6B2EFFFC82B6C0F2B6AEE3909AFA2C44A311D7AB | sha512: 9E5DE7BA2058945E62D5681746700DB143827C0BE8C08C0F0F3BDDE564AA379B69B8974EC8CFCB3E412DC29431F1BBE5CCA571F5CC99009C127BC4054DBD4D2E
tools\TfsCmdlets\Lib\Desktop\Microsoft.Azure.DevOps.Comments.WebApi.dll
md5: DB55221C60C2A3480D1DD3FFCBEBDC03 | sha1: 9C5EBB688F8A118C1EE3CFC3A93A7A070548F2F1 | sha256: C51CD262D526F8D0E3CCDE488B220A05B45FE71B971D16799FF5E73CFB10B36F | sha512: 016CF02169F0D71FC6ACC2C4E88A088113510F4312D6B4A22D7E3A442FCE3E2A3EFF19FA698AFB261645CCDCE7839BF03D40BD041AEB2704B95D332553E1F19E
tools\TfsCmdlets\Lib\Desktop\Microsoft.Azure.Pipelines.WebApi.dll
md5: F223B6B3ADBC032B9189D8E31709DBAA | sha1: 10AD94693162B16979D5737A6FBC919865718295 | sha256: F16B7BB7FA0AEF7151BD83D6FCAEADAB6C8EDC16A775CDF268AC693D5CC104F2 | sha512: 5D23DE7110040193A474EEF13489184B4528A294F0ED0D21BBED628498906B88A665837CB6A05FCB26C5205032710CE85E7FD70A8C3BED75DD4DCC8CADB81A88
tools\TfsCmdlets\Lib\Desktop\Microsoft.Identity.Client.Desktop.dll
md5: 02DC99D38D033E80FFA4F8CDD60643A1 | sha1: F7544232F181265C591951D736F522DE5CF582F0 | sha256: 98FC4580B2B4323B9023602F02A888A555B8C7A7D12D7A5A0DC226046E1EACA8 | sha512: 06BC203CAF27CFE9A910C1B7E44976986FE25687A939D0C097704A0F2B84A8368AEE5D7AE8867B8236C344E6BB08F4511DF32B36D64382309E55AB9BCE78BE32
tools\TfsCmdlets\Lib\Desktop\Microsoft.Identity.Client.dll
md5: 6E312077CFC3196FE237CC8E7A31FAC2 | sha1: 9D7AE90D340D850981834BB62F52C0997CB77EDB | sha256: 102DD25F9E405DEE8952D9B52E740A75987ACF01407330EA8B5D0D0B5CF7D64B | sha512: C68754496250393AD680F5ECDC1D1F295F092DAEC9B439E53B466388E79081EC7CCDB5D229922A9BEC480DB6F37958539E76628ECD21B39CBB5A1F7C9EAB9F91
tools\TfsCmdlets\Lib\Desktop\Microsoft.IdentityModel.Abstractions.dll
md5: BB30AD362E97061EAF63C42FA0046D59 | sha1: D6377F1A7C423FAC939C3F6DE711284A0CE48C0E | sha256: 732B74EC9E11CCD9FB8EFF0EE87B65E583177FEFE64408F18C9B9F9BCFCD84B1 | sha512: F20413D0F5089890A048E59EA0B22D8F5C6CAF6244712BF2B079716A03D3BDA0C3837B9FDD0DCF122DC5608BF48B8E4C3BA119C7C62ECDF6B2A77B60A8FED7D3
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: 8A5B61FC9E3B8E5E6FDCF0B376FB9895 | sha1: D1A88536DD86682C8F0174E753BB05B033C966B3 | sha256: 22B2FAF91B04302DF551429945E098B5E8DF7F522F43AC3261D4B2C1253B25B4 | sha512: 904509318F9A1B6B01E27568620152E1178FCC5A56A766B1A6AE0E0742B1BF50067E092FA55D4C43DD2875FF233015C1F80EC5E4D28952F0550852BD5EAE4A91
tools\TfsCmdlets\Lib\Desktop\Microsoft.TeamFoundation.Build.Common.dll
md5: A3547CD72CDCEDBA748D5334B02B4692 | sha1: 38A5E15EAF57092398B06AE17B3D62BAEB0E96D5 | sha256: E1D2FD4B0EF279469DB6ED21DEECC92B6C74CD3A397389F6D3A12800E6E3EA8C | sha512: 2D0C7A3917F7C2DA184919686CC4DAC42A7FB9965FC126BD2A580E0C183B36503D9760ADB63CE4C475A3AEEB5B5B92329030830B37B84846A29693EA88EAEE3A
tools\TfsCmdlets\Lib\Desktop\Microsoft.TeamFoundation.Build2.WebApi.dll
md5: 63841053559443F03C0B0C1D08142B2A | sha1: 778CE4E3E2EDF002C2994463BDB65B2C3F68766A | sha256: 09338147929C481222AE5D7A7452041535D65B47B7156DF6E211385A347DE22C | sha512: A6AF71C515999ED3386E59536360902C26FEBF62E55CFB16A75AF8368FA0863E7E83DF014037D0C4C32BD203003252A62376EA85B899C014C0811911A4D4ED6F
tools\TfsCmdlets\Lib\Desktop\Microsoft.TeamFoundation.Client.dll
md5: 3E6B480F378FB66307FC0B6F75F891E9 | sha1: 15C6CD578BA9A092CEBED6106F22304EAE4E5474 | sha256: 90B5E60367283E2456625F3CA2F83482A490A5E58A2E0C0F455C634EBC72C941 | sha512: 68A740F1044573C6070065DAD5F52B7647BE86D8E721C0E14014C047ECE37CF7924196CF078A83796CE7AAB4BFB8ACC927EF8143C843CB8B06039A30EB71DC30
tools\TfsCmdlets\Lib\Desktop\Microsoft.TeamFoundation.Common.dll
md5: AEA94C7596ED4DCC9818E9ADE3555D1C | sha1: 80C5B81F2A5C6EA4F5FDB021628FC7E625CF15C4 | sha256: 4B25F317CD4B5BF49082763E4802EA64841F7C9B02B4FC61C558BD99C4D36C29 | sha512: C830D9B7D0B1B0A23DB11768CD1D4A3AFE09CCE9995ABCA232C0F9119B864D637C6C37E5DA0DB7A6C653E7F4DFC514E177E84C327726B3E6FCFC47D43F3AA0B0
tools\TfsCmdlets\Lib\Desktop\Microsoft.TeamFoundation.Core.WebApi.dll
md5: D368387C7C2B41FD74A661ED5D3432EF | sha1: D8F21AC3C4785249D981A3E8978C86370AF2CB7E | sha256: D57B18E604A38DAE443337959B81AA899E3DF5604055A38BC0E05DF6B338EF6E | sha512: CA49539F14AC6054607E5A73F537681C7E759842AD6D68ACABF8FDA6E14C6F6249C34214E703D349D7D7B9570EA5AA42B862CDAEEA21C5D24FEBB90105A85BE0
tools\TfsCmdlets\Lib\Desktop\Microsoft.TeamFoundation.Dashboards.WebApi.dll
md5: C6BCEDD7668F39723AD3DEC992B72E05 | sha1: 58AD976EAAB8949699F043A594476784E6F4C424 | sha256: 845F571B851241D012231D97F8317BAEA0E1DE90FEB1A5DF5C9733B97BC3177F | sha512: 8264CA49563F79CAF4012D54AD57CB625E39B47183003901121D23273D4BEE60A3EC2D30956F122C65A888FE4FE77DE62056C4E0EFDA7011E319A1BE22DE9816
tools\TfsCmdlets\Lib\Desktop\Microsoft.TeamFoundation.DeleteTeamProject.dll
md5: 93F6082C04FC2F8914C6DFF5C4D0FCD0 | sha1: FA78CBB860E1283DD12E3BD336F1EF589CF944E6 | sha256: 4DA9FE0F0D0C91707CE4C6D1A29E7F1420BCD8B18664BC802286E2153E4470CE | sha512: AF56BBA3D65126A224D5FD9A654A0C6934F5E70D779EC3C6AE6A6AAC6154C07FF187B0C003E2AE6610CDB10E779D6D0FFBEEF83BB4F09E096569D19A31D00569
tools\TfsCmdlets\Lib\Desktop\Microsoft.TeamFoundation.Diff.dll
md5: 268C1A4D9F0CDBCBE9AFA9340F8E3D7B | sha1: 5CCD0A2218D2DDBB052854CC143DAC821FD75C23 | sha256: 9343EBEBB0E40C23E8BEF3360122764E4D9E67320F74E8B611E3E4CEDC6AF87B | sha512: EB332FE850B3475D76030DDD5A3ECA8F820B0B10BBD0450BB6AF064596A92334407463BD79A92F75EC14482578BCA26D0B96C154753D160DBCA6C84D204A65C4
tools\TfsCmdlets\Lib\Desktop\Microsoft.TeamFoundation.Discussion.Client.dll
md5: A994789D13692BF7165B9C02BA07E653 | sha1: 76346DA75EDFD3779625CC5A285570428DEE991F | sha256: 757B6F0475B6D5FB737789FF3892EF4B282DFC7392CE44D586C7D37A3B8C3431 | sha512: 298D97CC6A45969E997D3547129AB31813DC3553091136486F803B23968C6CACDD09C6EE13EBA7FB5EA0708F1E54FB456045A57F85DBA81F98EB59D095C3B36D
tools\TfsCmdlets\Lib\Desktop\Microsoft.TeamFoundation.DistributedTask.Common.Contracts.dll
md5: B97D23D8960CE482F43E4C275B019D61 | sha1: 997461771DD742F9138D92C99E4239C0CAD7B268 | sha256: 1DE07B1F40412D307F5B10F35765C543B28ABD5D2D74257ABD1A8641D6819512 | sha512: E7B0DEE5BBA97B3CC92193DABAA7B49D297B200B6880EACCC05E4D8E1BC95CE9AB4CF8D45D950B8B4CB91FA33D10BD46F7E45B76D0BA6EBCD43E1B731A32B3E2
tools\TfsCmdlets\Lib\Desktop\Microsoft.TeamFoundation.Git.Client.dll
md5: 71D3D39DAA3E7074D0F8871D2FF41346 | sha1: 6E16EBD7CAF268D833E13AB83B5AA606DEB51164 | sha256: 619BA5D40CC91A3DD95A7135104C2547AF92972E9A3176963BA5A69E06752E75 | sha512: 53A37A049DD88DDFD7C389EE57838502FCC0DC11D5150509180066EAF2A3A0D20FF6B44548487AE81C92A7731E931D3C84C18FBE4CFE3563C4E51B7242038C96
tools\TfsCmdlets\Lib\Desktop\Microsoft.TeamFoundation.Pipelines.WebApi.dll
md5: B952FA9EF6B6C6D4D29A1806A9380077 | sha1: CC3BF3D8CE7F76D2BD04BA53722429EDB3AF1F8B | sha256: E97F6FD1FAA11FFB7B9538D84FBC961BF317ECBCEB73465D6B0D3A0FA272E047 | sha512: 75705969D56A4A823D4BCFF0E08CFFB5434059708E0362EE2D0D25A8E62DB1B2A93D664C2B74B711B96899057AD6A32A698FA022180165630EF5BF4A6E8AA2B1
tools\TfsCmdlets\Lib\Desktop\Microsoft.TeamFoundation.Policy.WebApi.dll
md5: 3E56417BC87FDE20F4A51938D197AD37 | sha1: 020032540FB7C4E53101EBA21C2BDC19D14878BF | sha256: D41DA23CDD3060E06505016CC92DA9E69CDE3DAE9A03C1B7D85BAA9A932696AA | sha512: 9498E0EF66F3915F62100D27E115EA2A0184C065DEEE7F59BA1D2F655573F471341602D15312ADA0088288BFED559C93C37361CA5CA88945E778043932CBAD12
tools\TfsCmdlets\Lib\Desktop\Microsoft.TeamFoundation.ProjectManagement.dll
md5: 97E6A21987A2C5659412B34CD052CFE6 | sha1: F5B4AFDD130941C174F400F5025969CB87522410 | sha256: FABE9338E7FD37F691639879884FAEABFA02A11139EB322EBEED2C9BBBB107CB | sha512: A0CA91941C6E7CF6182FDC2495B6F3913EDD7C7DD6C5A3D3F75850735B27D075DBF78E7AF2C3CF201CD92AC56A4643D108D7569419CD8E78DB3A61B5B01D72D7
tools\TfsCmdlets\Lib\Desktop\Microsoft.TeamFoundation.SharePointReporting.Integration.dll
md5: 86D905783590E6308129DC65D1C085E2 | sha1: E08ED1BE48F4C0411F8BE58B60F282E3AEBE95B7 | sha256: 90D832B9D5A3CD927DEFE4AF1FDB8B1DB8AE78CCE03C523542CB192AF8F8D2E2 | sha512: D974B14367D63897D8AF74EED174CBB1BB90C4EA2C1B1ABBE1F122D3D627F917E6AE6D59ADE73F2CE80BADBA10CD02EE881761DA8825FB4873F058C22C5D355A
tools\TfsCmdlets\Lib\Desktop\Microsoft.TeamFoundation.SourceControl.WebApi.dll
md5: 986628BDBA3CC971610A4B43C4AC95F3 | sha1: 472E27E6A645E24B06C6DC24078084FD74AA27F5 | sha256: F37DC2D2C70DBB7B0285139728617228CEBA6D5F0B6A903011062B697283FEDA | sha512: 1B252CE9BAA4592655B6F8A2E91F2B0779FA2DE778CCC5C8D89FA0696A904CE0FFFF8FEF626B7D3C412A0CE4E6AA79C0C32C2F5DB9A655C5A4C2EC2423C9B098
tools\TfsCmdlets\Lib\Desktop\Microsoft.TeamFoundation.Test.WebApi.dll
md5: 4C6F99A9086956FEBB127616D501E007 | sha1: A4B283A21E3DC0FA2E8627E0C21C9FBEDB9FC0D4 | sha256: 018CFE089ABFB375D0F1DFF672A7F8C2072EC31E8FCB0796AACE8265D0E84072 | sha512: 6E6E440AFD4EFC12BA3CB165ED15A6297CA97BC55F73A7757CDBF161A883592D5EB809753CF4F5FADA92537764C4E8A07099441950E406B4C254A05708761D91
tools\TfsCmdlets\Lib\Desktop\Microsoft.TeamFoundation.TestImpact.Client.dll
md5: 535AB1BC3415355FB0C5BB2100C56EB2 | sha1: 1BAF8061B1E4804985EBE14A6EDFAC7A420FF372 | sha256: 0226502159668FC121A4FB6E96D999F84AFA79CED40A73268C3C5C6300E10356 | sha512: F01F49DBB022F2A268F5ACBC2ADB8E1BF3EADF391FECCC01C7EB1EBCE4B9F059FC6656A7110FD67FC94D53F02C368ABDDEB6BF3045820F0EAF2B9D5EA14B233A
tools\TfsCmdlets\Lib\Desktop\Microsoft.TeamFoundation.TestManagement.Client.dll
md5: 49598973A757ADCE9192608461970AB9 | sha1: E51B5A97AE5397EDA63AFC0D982505549AAB0A36 | sha256: 4EE8A576000F0FE8B83FB7144B3989B1F7CCF2F65A9174D00831442E6112A11E | sha512: E92109F5360818831E76F8895991C88880B6783765540B04622E9EC9B29EB57C2C0AD83D146B218F245A7DA853823B7847D6F0F5415D056A0FC03D6AC6E8DCD7
tools\TfsCmdlets\Lib\Desktop\Microsoft.TeamFoundation.TestManagement.Common.dll
md5: E1E69C70F36779A7C0B242123BDDA330 | sha1: 651467E2954EA9ACD30222FCB2A95A5B70A0F9BB | sha256: 09F95B6AC5B0EC192C203931765B22FFE967E81AD394AD364A7FAA6FE0EFA57F | sha512: F7F4709BF3DBC70DD48A72A71C20CEAFA6216F29862E941B7DA2A70610228A844D95A3ADAB283391A540E4E0DC71D919562DB497296C97E8DA9F29376F5874AF
tools\TfsCmdlets\Lib\Desktop\Microsoft.TeamFoundation.TestManagement.WebApi.dll
md5: 5809FBBE5F94CF5142AB0E942455D6B7 | sha1: C775DE235D6B27B0CAE9CF27F05D771F17F2720F | sha256: 8368A30BC4A8B9DBE28432DC62CC8EA363EE42D549FE18F7FF6200F4B35BCF2D | sha512: 008243A1BA37C455C35AFB38B505380C5A7DA524A40F43997EC4E244FCB8C9329DBA244E7981643B3EE068E7927758FDE497A7AD46B36CEFE3D889E29B83DB6E
tools\TfsCmdlets\Lib\Desktop\Microsoft.TeamFoundation.VersionControl.Client.dll
md5: F39878B88CB5CD9BBFC4CA168968597F | sha1: 16169B63F808C49B454CD052992B95C882A826CC | sha256: E2413E9DE47154BB2E21F58B81E4BB80582D2EC8B2D2CCF70EA07D0936FE810F | sha512: EC3C02F87C3A3632254E44E384A311181BBD8F6F9B8303432D4988C4FEE5D29F172692B654F0B99A372D2FAACABDECE612A8F7D579621121522491E0CC96D87A
tools\TfsCmdlets\Lib\Desktop\Microsoft.TeamFoundation.VersionControl.Common.dll
md5: 3ACD577904CB5FCE2EF740B7B3EDD35F | sha1: 3EE323AD0106AFD2B78DE65B17F9C0B998354E84 | sha256: DE7ED885E99AACF6C4D0F6F4E78A28B7BBBBF4A029AC3758A2C1B81CE109E2AA | sha512: 6C80E30E5EF6719FF9A4586D5F41EB7DFFAF4E38E38204FA26597677D9495ACBB2D35CFBFFFB0AC63B6FEFBD4CF5F74F56C1DE9844B144DE2B06146786BF3D3F
tools\TfsCmdlets\Lib\Desktop\Microsoft.TeamFoundation.VersionControl.Common.Integration.dll
md5: 11772A663FFE790DEA77BBD693969F8E | sha1: 32FDB69E695ADB512EF93E0DFB1B358F6CE1136F | sha256: E6A9CDBD7B9CC7BFEBB531F1D3EB8ACCCE37081CAB1F70A7B98C3B7277D01C72 | sha512: 660689BE52D4D0E1EE909B72377794AC09DC7431BD72371DF3EC2510B63B76790B9DA5DBDEE2B036FFE08B914270F022DD99DDF89D483FE0F9AFECE147C9CF8B
tools\TfsCmdlets\Lib\Desktop\Microsoft.TeamFoundation.Wiki.WebApi.dll
md5: B048A7469922F4E51141711829247B11 | sha1: 5D7BF1E75A61CC6D0F769B33CB40E92350996FE0 | sha256: 1C9BE27B4F86C06056A3502886B652151CB58830D212A14749934A6CAD7C7D67 | sha512: 41A4376933ABE7FF3F35DA328036B6BBDAD40A45E558048BB82778686F9F9A71DEF0A71BFFF2067A0C0DA6B5DA14B70D73F417FB7211DEF6AE42BEDDEA04FF57
tools\TfsCmdlets\Lib\Desktop\Microsoft.TeamFoundation.Work.WebApi.dll
md5: 43E0FDBEA0CDA0EF9D6E0222774F2030 | sha1: 63E66057327C9FACD077B00D7F3D5789366B002A | sha256: BA95DABACE30CC250FB240AB2677BEABA89ED3C592F8643C53840F4C48E8F939 | sha512: 6C643E91BF4092C77775E450DB3E9ADCD2BBFABBF23CE485797050EC9E9460BD8D650CB540E2B3B2ABF5112A2FE00E6D1DD7B487D5F98A9607D24560B4F7D388
tools\TfsCmdlets\Lib\Desktop\Microsoft.TeamFoundation.WorkItemTracking.Client.DataStoreLoader.dll
md5: D13860F59C6862615E84A0E215420AC8 | sha1: 553796A3CE47032BF472B2E46C4A497885B441B7 | sha256: 8B88EBC59ADC8423399C7796F4A45BDEECD3E2F3CEFA351EFAC1095682634035 | sha512: E240C95796013072B1858D8A53EF6DDEDC3D24140C9FA9C190D29EB190F4CEF4CA1556FE909F81319995FE563C118BA0703AF42E770A212CDB41F12E401FFBBB
tools\TfsCmdlets\Lib\Desktop\Microsoft.TeamFoundation.WorkItemTracking.Client.dll
md5: 7EBD2317FE56D83CFFC81DE99CAEB3FF | sha1: ED0AA2677539A5AF9F659BC8A3A73896D2C9A92F | sha256: 24D358FDF8A89DBD14AFFB3F1EE3210B2A04D162C8E052A389E05C4373601573 | sha512: C8F181E248EEE4EC57A0C0E0A9531D757A1BA19B2FFCE187335D7CC04BA97C9703FDA2FFF0A10D8225B8B7B36EF6F70C06AB70521FE21957FE3737E4BCAAE7A5
tools\TfsCmdlets\Lib\Desktop\Microsoft.TeamFoundation.WorkItemTracking.Client.QueryLanguage.dll
md5: E65B4D846EE3BB08EC6AD451FB888011 | sha1: 1AFCC35AB10E312AE742D7BEA688F25C17735B5C | sha256: C4BC4960C9CC8220D18A4ACD4A2488768D3DA71047268C85EDF11347664AAD2B | sha512: B94D2B2C0C0604133709DA75DBEF51223C0697DA0C8F6234AC44592188AA2FD2778302D71D0494A1A93C8EC8D49653A51008758BB35F5D8180B67376CE645BBE
tools\TfsCmdlets\Lib\Desktop\Microsoft.TeamFoundation.WorkItemTracking.Common.dll
md5: 9BC71CE4D1B9C673A8DBA62C608E47DE | sha1: 1FEA74541F73083072970466BDF2AC80394EFA2C | sha256: D02C5139D7AA7CC4ABDCF195F18F6DF9958946E551721FEB751C50EFD5518133 | sha512: E164621C0080CEFB11F9897D9AAE046974E81CDEDC95BCE4E30AEFDDF3800BC221144D11DC890C9C7A95009034103373F379CB5E4C1FFAFC9E21569623F0ABBA
tools\TfsCmdlets\Lib\Desktop\Microsoft.TeamFoundation.WorkItemTracking.Process.WebApi.dll
md5: 99FD654BA54186C111C3B097EBCD7240 | sha1: 0ACF6C1D4116475F343FB2E887BE28F62D94943C | sha256: 57F4980EE696059F119E3ADCDAFC2C18DCF2C3435009AA40F89D67F046810E2D | sha512: 32AF8A78816CD329FC9AB7982661DCE029D348E1E61F82D4EC7FD7CBE0D0D194F50063C55F19E234ED7DB179F1C36EF4C011E371106BAC38C2E99AC57A17AAAF
tools\TfsCmdlets\Lib\Desktop\Microsoft.TeamFoundation.WorkItemTracking.Proxy.dll
md5: 2C17C92A5A88234E4CDE9434FA174CB6 | sha1: 63D72595341B930B65B99A3D8569BC075C6E7A2C | sha256: 807B512A7E6950124F5CCA3350B19FC0F2FBAB632EA349343F3E8A7EBB671C54 | sha512: 82DFD2C900222A3C7287DC22CB84780B20F94E5526BFFFE3AA45375099861573EF4A71F84CCEBC910967C6A77FD84DD03B7B2A0D2E7797ECE9F71C25970638CB
tools\TfsCmdlets\Lib\Desktop\Microsoft.TeamFoundation.WorkItemTracking.WebApi.dll
md5: CC7A6E4E23D9DC5C0E6CCF2B24367653 | sha1: 8BB7E9AFFE0B98183AE2BEB85F36B885E996F9ED | sha256: 035754BC63FD5D30B888DCABCDAAD142EE986DE430A055C5BD23885D537BE272 | sha512: 710286D19C2D8329F4E0C18CC0E6DDC202E5478C6F4B534AA2C820912EF14776216397D22BFD15EBA78F55B026D0E8E52E24B212415A3554680F8BA98C261F7C
tools\TfsCmdlets\Lib\Desktop\Microsoft.VisualStudio.Services.Client.Interactive.dll
md5: 81A018152E712F1AE23E38BEADC2E52D | sha1: C6CDE98EE441933DDE1F33DD614F6C93C8BC2E72 | sha256: 799016D9BDEAF17BB69C2B8D733FC99D715E4EBCD0DF7D0C1A342E703BBE28B7 | sha512: 0DEF5B634428FB031176CEC4474C6A3AD586351C83F5151543539B103654C751A9845220456116F7DA9B11A4BA0CBEB939CC40BE05829BCBEF4533D2572E4457
tools\TfsCmdlets\Lib\Desktop\Microsoft.VisualStudio.Services.Common.dll
md5: 80CB1CE00A89DD4FE5A57FAA6AA5ADF4 | sha1: 1B08248FC773B0CA89C28CE7728113DBC376457C | sha256: FDF157437F0DFBFAE1A9739F06AB6608D925B43C2FEED51783F91FE41DF252BC | sha512: A60DAA592DF7E4BCF13CF0DA4EC873C97B329DA6939854CCB561AA8B7FCB9E80A9271BC1A2F4EE07C2536F035EB517FC0D5EF0EBABEC112F7D879153786044C5
tools\TfsCmdlets\Lib\Desktop\Microsoft.VisualStudio.Services.ExtensionManagement.WebApi.dll
md5: 0183B862FEEC16E2377B197554A446F0 | sha1: DA418593D060AF41FDEB24E981F0A2864396B4A5 | sha256: A736965C5309E92E5CDCC55B8C22B6FF9F372FC4057708CD33626299B4A739D8 | sha512: 51D88F7E6376896CB55153AF48722E58B7A6A28AF043498A088EC60ADCC1D25B0F56207262414B32C7F4BF7DE21C1FAA228C9242D55585AF7C16338958C26327
tools\TfsCmdlets\Lib\Desktop\Microsoft.VisualStudio.Services.Feed.WebApi.dll
md5: 56775B15F2A6D5D780BF69F68D68DE82 | sha1: 6A16DA6C4EC7C58932D7980A28691C0C6AF15EF7 | sha256: 6F878018B06E8A907D6F568F2476A39C1A50FF96C264AB65E8D8C038746B02DA | sha512: B6EA8EC2E8D43219ACDE7FBB459C4510258F5072FF6A3A0685BB5FBADF38DDDA8038D98165036CE6ED132FE80700656F16F5FF53542D5619CF5B144981DCB627
tools\TfsCmdlets\Lib\Desktop\Microsoft.VisualStudio.Services.Gallery.WebApi.dll
tools\TfsCmdlets\Lib\Desktop\Microsoft.VisualStudio.Services.Maven.WebApi.dll
md5: 424F17AB2315E796C103D95D8FB1DB07 | sha1: 6174CDC3293A07DED02A754FB8B7DF4014B5545C | sha256: 15DB8FC33BD829614A46C616FF797F17B4EE9045F468700968CF73F5332F60BC | sha512: 0B1D92C33AF38C88ECD7E66776CF48A0824E1C8F186E949BD640343D391274F5CA382CBDEBF31A9EFC98D422DFC9A1D0D517F481B5BC9109DBDEB030DA4E5C01
tools\TfsCmdlets\Lib\Desktop\Microsoft.VisualStudio.Services.Npm.WebApi.dll
md5: EB6992E19B59468B409AE47B24CC0947 | sha1: B6078394797B7F8D6AC23A3856548F9985CD022B | sha256: A5E27C39645F2C92EAE6CA38527C37D9C53FA0E2D1E33C8AEF523BA65CE281C2 | sha512: D481DCD5591D3FC379A24BD9625F97D3C96505B11153B473D7586C58F6665F6A7FA726746CD36EC1791214B4A8DD09D21E45E1E3573C36EB29E797B876C03189
tools\TfsCmdlets\Lib\Desktop\Microsoft.VisualStudio.Services.NuGet.WebApi.dll
md5: BB15563F6D4B7272B5CB0B02CC39832C | sha1: D5FE00CA24BE35046AFA7D4264E7B310CFC71146 | sha256: DC13188C2FA12EA6EE74D6BB851FE19AB8C12F5888B6A0F02EFAE45F9477B770 | sha512: E414825922CA6E248CB4970CB02C702DC47B804DAB0D46DAF985B51104AAEA60C8CF5B7955F1EE017A5FE6F0B52ECFE9F92FCD85E1ADAFC216EBBD5562153CA3
tools\TfsCmdlets\Lib\Desktop\Microsoft.VisualStudio.Services.Packaging.CrossProtocol.WebApi.dll
md5: F60A37DB5F810B69D1AB925A731FD321 | sha1: C6C97168FE3F8873AA5077D3D907B481DF03FA13 | sha256: E83C5336A7CF784F360BB4CE48BB6960A664452A88BB9592EC996F0E43AED445 | sha512: 6CF04BBC61A1CAB5E1AC3F3FABBEFBD3AFCC259F75C01D118DEA321675985C5515CC095A596E762A22AA48E515D8A69B1ED9F9055559963FE8D32F144860AB5D
tools\TfsCmdlets\Lib\Desktop\Microsoft.VisualStudio.Services.Packaging.Shared.WebApi.dll
md5: 451071F569FC91B57AACA50BC66B450B | sha1: F9AE80458D91A42EC0CB2E4EC56CB08D36975B3D | sha256: 04FB032C71A70A53879B00C7E415F2A426759319F1B415EA65767EFB486C11C7 | sha512: 199CC4CE14EDA1C5D73AA717DCDEEB35BCA050220B4F64F573E3CFE91CF934021B042162192186FE929AF764E5153F7058A4973F9F4B89B7024FD93A2918714F
tools\TfsCmdlets\Lib\Desktop\Microsoft.VisualStudio.Services.PyPi.WebApi.dll
md5: 8EED74300565BF7E459887761A7F4ADE | sha1: 36B9923C3CD34CF1F7905F6D3F2AC64FE0E09785 | sha256: EAD106C931B7C345279E9456015C7423577E3C8A7C4954D130231DD8C2772BF7 | sha512: 13BCABE5D1611CD9DDBB6007220A6969E89EBFB8F063621AE3E35539230A6375DB4B9F9142206EFF2A5136FDCD85CBBD4A168629B9C2BEB9614289E71789D3B0
tools\TfsCmdlets\Lib\Desktop\Microsoft.VisualStudio.Services.ReleaseManagement.WebApi.dll
md5: 187C11529A217029F3144D16FD82ED90 | sha1: 540C566D7299608F25FDB1718A9DBACDE7248EE9 | sha256: FC99D607B6A0BF785BDBEE6B2C01BC0A00016B75111FC87FA73338F1CCCEE597 | sha512: D37E98768FC84EF5E866F817C45BB7366918712A363AC318D44796C72DF397B00AED2AD597C1C2424D9BC9D5F18481D5BF8ACF0C1AF9F4409A8BDCE7DB6A169D
tools\TfsCmdlets\Lib\Desktop\Microsoft.VisualStudio.Services.Search.Shared.WebApi.dll
md5: F457CD370B3A09E81E4E6419CD33C829 | sha1: C94D79C00A21B7E316CDF1984990CA741407CB30 | sha256: 6145734E8D479D1813370A8BD645C188131BF021224008763A89253AC65A05BA | sha512: DDF206D710A806C326F096824E00F958F82FF2529CFE785C3B06046782BE05E6CED28ECE8C65173C0661E0070347EAEB0C709444401F26568FD55089132D296B
tools\TfsCmdlets\Lib\Desktop\Microsoft.VisualStudio.Services.Search.WebApi.dll
md5: A26570D020E28CF6E6EAC38B38DCD4A8 | sha1: 4D75D5420D9ED822713B96222217549DE5D26C2A | sha256: 72116A464F709BE49FCCF47FC8C36665905097E6C90565076B9FD297872E19F9 | sha512: 538358A6E845FDB97AC9CACD8595E7730509828461AE3BA28DF95BD14A40F9C57A5DC5FED9EE528F7B95BABC8B5F927F8B65C79DF8FBBD0901688AB117E03EBD
tools\TfsCmdlets\Lib\Desktop\Microsoft.VisualStudio.Services.ServiceEndpoints.WebApi.dll
md5: 6646A78AC0DDA085F1E39ECE432C6356 | sha1: 50DC1F0BAC592D19DD8531902DB5BF95C589D85D | sha256: CE33ECD0E0945A79E61C07397579C37DADB317344B3696814144ADB9A84753BA | sha512: 56699C83E79B23C24E2AE6421CD0A6386F77601B1B1D95CB98368C837AB66DBEEC88B10277F93B9EC9B634BEBA73D265239679A383DA198E73B522EEC870F362
tools\TfsCmdlets\Lib\Desktop\Microsoft.VisualStudio.Services.ServiceHooks.WebApi.dll
md5: 5ABF9FB7EF33AB68375A15B12134366F | sha1: 5D2EAA688262C60306E8B1CE6FFB488C87A92F97 | sha256: 5664BCE168E8FC9F2FF1A02716D123BF28259C65549DA41BA7268AF3D71A7C87 | sha512: EE0935142DBE06927B3CFE969001EF01388BF819BC38FD2935EB0FC88824CCDC6E57B32FBC5ACC2C3C59A446B81CF90AAF1A2B166CB5C82ABB4ADB9524081760
tools\TfsCmdlets\Lib\Desktop\Microsoft.VisualStudio.Services.TestManagement.TestPlanning.WebApi.dll
md5: 626D2EE77C5AF329C65E1D93CFBF6E30 | sha1: 7F31DD0577E2D4C2F6415C650EE17C1C6CB943F7 | sha256: D504A6A57CCB0BC9F10E476526EBE725AC5017531DB2361A6DB506ABE0F99B8B | sha512: 8E7411A075CD992EC35D5CD845B8F1218D927306C5086D563987F5D32B041FD6EDC2CF973B84A236CC52CE99001FE595B61C8EB35B45CEE9A3D271F3FA8D594E
tools\TfsCmdlets\Lib\Desktop\Microsoft.VisualStudio.Services.TestResults.WebApi.dll
md5: EFFFD35CB03CA959D1442A1ED13F2793 | sha1: 990A3A02077E9823C99418ECEB5D8284E47E94F5 | sha256: AF612DF22D77AE07AB810F745D87BAFB7FF72A7AC29D2AD731F4506F01262EA6 | sha512: FF8432A223E52C4895F4DDA00DB7EB0730DF4C549DC545FB31E00E2108BEA315D49155B9078D92D736465251272BD1DAC85310F40112D74D05ED87D99C3D34C9
tools\TfsCmdlets\Lib\Desktop\Microsoft.VisualStudio.Services.UPack.WebApi.dll
md5: 2D407755F52590D6AAF7A38447F3563B | sha1: AFE176C67283849AF2C3A6C8228639223CB1DB55 | sha256: C2D074480D057E0B90A0F20E39EB99468840023D8D4A574A378347E9DF931D81 | sha512: C1C9CEFA8732F55B830FDEDC52570DF4DBB55769E182919524B7A6CA64485AD78678AB38F4A34213C9A047D00BBC07DC3A00BAAE8B94B19807B56C624A290AAE
tools\TfsCmdlets\Lib\Desktop\Microsoft.VisualStudio.Services.WebApi.dll
md5: 5A338C4D1F6EDCD8C6F4B05EB9CF35C7 | sha1: D5CA056522AE33BCB556C8B7485E6AE369CD5A97 | sha256: ECBB856C8997667E9F521FDAECA657744D7D7959C6C81B0F681C3511314826E4 | sha512: 5F0650A6FA7A28F286EFEFD01B830CD0E3F3F94FAEA5362073D6F47265E34880108F2D81E52C0E5D591F876A85EDAE22606A090E401A3FEA9F9B8ABDEC63C47C
tools\TfsCmdlets\Lib\Desktop\Microsoft.Web.WebView2.Core.dll
md5: C120BD403156F7D1E1DBD703AEEFE043 | sha1: B9122AE2D20A2C24DB38BF42F0CB2C0E626A69CD | sha256: 966B9271B90BDDF080E6A21167A2EB78B16AA94544F6BAFAF66301F8EE91DD53 | sha512: F8E7C38B0BA06B8DB009693271FF941ABB31876A8BEFA2BFEF6B3E51DC118336E752521582DFB702D6E2550E434F5FF369BE36FA259FE285DCD69605EBC95045
tools\TfsCmdlets\Lib\Desktop\Microsoft.Web.WebView2.WinForms.dll
md5: EFA5EBE7754218E0612C60B6C3918C0A | sha1: 492246EEF13E642E2E8A26CF3EDA5F4FC9E5CC83 | sha256: B2193A24E18AFC39E6D3C4C663A91CD56B04971430FE08F84D46E1CFC676128A | sha512: D83EF4220B951820CDDEA3F57ACF3859353851E59862A28E8FA6C5A7109B125554A572E41BFB962E70E9C6563EF00C7832B5134938AB1A95402FE69C992326BF
tools\TfsCmdlets\Lib\Desktop\Microsoft.Web.WebView2.Wpf.dll
md5: CEAE7E1B94868993ECEE065373D29BC7 | sha1: 3FBF9D5BDEBDC99DC6A49935E865A24EDEF9E3FC | sha256: 21E5BC46108DF14BBCAB0CC604D0E482843B3323947F0F786A2AAEBCE67A6E64 | sha512: 390D52457443FACFD2D0F066FE4A72A5B0DCA53EEA43803338D066D45E3F540F849E68C3B823497642E53A3A3ACB605D156CAA668BD82C9DE1033ABED925F28F
tools\TfsCmdlets\Lib\Desktop\Microsoft.Win32.Registry.dll
md5: 59C48AACB1C413C108161AFE13FDBED9 | sha1: 31ACE4B26D8A069C84AAD6001E06C2A5483806F3 | sha256: E9A9D281C1A708AAAE366F82FD6A1742F65DA2918CC4FA5EAAAADA0BE24277D9 | sha512: 8252ABE64C67863D9E4C70E820F0C69C517B8678A4B4C13A436118BC276E5F21E84522B93566C0BC009EFFCB251ED67BDBC60E4907ABEA2F33B6BE3764E28D1D
tools\TfsCmdlets\Lib\Desktop\Microsoft.WITDataStore32.dll
md5: 937588E7144110DE951B61D33FDC92B4 | sha1: C8D09D703E5B57ACBDE58E98A626321836C67E83 | sha256: 9B23986EE05EFCA60552CFA15A5AC7553F0397911CB92AC867C647EEB14FD9E7 | sha512: B0375F1EA4F4215D8A588DD1BF5CACEDA03DB09E8407B476F7220EAFE80312DB06859893FC40C200A7DE7079610EA62DE5430AB0754F530BB04F7384ECB9FDEF
tools\TfsCmdlets\Lib\Desktop\Microsoft.WITDataStore64.dll
md5: 5A8368876C6E97C890DAC4610ADC6F31 | sha1: 3315BAB8DAE352CFBADB38A69A9912ECEE58AF3C | sha256: 5CBD9BD5765C6A2301C1F65C3E6CB8F3E27BBF6CC2C21A555D7863BA005FD658 | sha512: 4AAA7FF4B1E74F8FB9A61F1CD230145FE52FCD107D123A9E486ABBC05E2C155AD4B5F18283D0518371B854D2B99DE29C19F99EB6762627B1A7BF051A9765EB1D
tools\TfsCmdlets\Lib\Desktop\Newtonsoft.Json.dll
md5: 6815034209687816D8CF401877EC8133 | sha1: 1248142EB45EED3BEB0D9A2D3B8BED5FE2569B10 | sha256: 7F912B28A07C226E0BE3ACFB2F57F050538ABA0100FA1F0BF2C39F1A1F1DA814 | sha512: 3398094CE429AB5DCDECF2AD04803230669BB4ACCAEF7083992E9B87AFAC55841BA8DEF2A5168358BD17E60799E55D076B0E5CA44C86B9E6C91150D3DC37C721
tools\TfsCmdlets\Lib\Desktop\System.Composition.AttributedModel.dll
md5: E592252492D8577A32CF7F09EF48EF41 | sha1: C37030B44A37B6B57A4D92A567381FDB1FD4EE41 | sha256: 9E2DDD309D784F5052FB2ACBDB6F1FE45A1D972756076FED2354A8452335F81D | sha512: 87D2D194ADEEC4A2557C45EDAA014F9AB1EBF5604A0F9D4F8408AC8C155B92D42CAC71DDA558B9A34F5B0ED312A119FDA72B7028B1D1D46DAB9265DD4C51D8F1
tools\TfsCmdlets\Lib\Desktop\System.Composition.Convention.dll
md5: A9EB9BA6718E33FE86C66C833C4568EF | sha1: 98FA9939E86619E4E4E0CDF633C5E3226C8EAB2F | sha256: 655876E3B2278CC271E6190C6734145DD01D49D3DEBD4B09CD7C7A4210B7F7C2 | sha512: E77733DA6825A0182AC105059762B2E05602269527BEF26B7718CD512ED8984B50C22284DEE92692FB533BCA4EF21F323061620E5B5EA7E3567A2819A9734F4F
tools\TfsCmdlets\Lib\Desktop\System.Composition.Hosting.dll
md5: 3029A303DFC92C93A54B330351E91E7B | sha1: 6F5D4AF8FFC4F21702EDE720308E34BA70CB2B29 | sha256: 9942F2E01BC8AEC201D532590B4B4C7FB2448DD5FB08378900766A6702BEF223 | sha512: A64FF7091643D6DC6CAEAEAA504DB81C498B0AAC1B00F4FBA068ADBB4AD39993D4D922BBD52B9C41644D95B8DF948E1BA02EDCE329F066A71F222828384E56E4
tools\TfsCmdlets\Lib\Desktop\System.Composition.Runtime.dll
md5: 96FADD6D9038918A9C3D84FD3E01ABF1 | sha1: 24B1A7E4F2DC1CAF084966B4146D8B6736948DA2 | sha256: 51EB1D16AC34FCFDFEFB2E00262A00E58177AAAD54A31FA4B199B6E8929E865C | sha512: DEC65146A58D0C348372AA1247772B11956ED71A3A5BC47FD41DDC6DF8C6C43EAA0FB75F8FF1A741FE0BFDF5242BCBE94A9FDCDA8E32643B27E494CDE0550F62
tools\TfsCmdlets\Lib\Desktop\System.Composition.TypedParts.dll
md5: 2BE57FE321547E30208A36CFBF07E168 | sha1: 697103E90CCDB6A4A1A971A2A465E6D29999F64F | sha256: 7B0BEC6C76280275F989238F35FA01DCD1D0482A93CF6C7AE76BCA2FE38296EE | sha512: 03D727A04153E16239CD81270B287633191C67DDF378B80852066D050BE145E859AF04AB6786447D722C73926CF73E8CE782972B067E71A5C8C58ED0A17174F2
tools\TfsCmdlets\Lib\Desktop\System.Data.Common.dll
md5: 4EC7C87D3C8820C20E8C2EF80D80D363 | sha1: 1FEABEBF78539D5E7316BC4352B4383D239FD438 | sha256: 4FE23DD147813C0B724B62FCFC0CE419E9A4AD36F3DA4CC43E5DA97D796E289E | sha512: 2504DFED8DCF4F5C1CC56CB9EBCB03833CFB6837D0592F82DBDBC28899B6F1AAE2E007E0175AD7544FF13B017F3063145E1826267A5DFAEA91BE182ACCA3C5BB
tools\TfsCmdlets\Lib\Desktop\System.Diagnostics.StackTrace.dll
md5: C20C268EABDCC95DA38AD646A0AA0310 | sha1: 3760E870DFCFA41071E5B39CCA59265657B3715B | sha256: E932B25F50E3B09DD7759FF5B9E9ABFA8FC115EA171B768164AE21387FEAC7E8 | sha512: 422F8F7A50F457EB979652B14A6C06A51A6A94C7EB9F56045A4B944ACBE3026580465AEFFFD9F30A4334A556FA1EED8488DB0766C16D637023E72B579A26DFCF
tools\TfsCmdlets\Lib\Desktop\System.Diagnostics.Tracing.dll
md5: 482573CB18B537A7415DCC00C906611D | sha1: 4377161FBD9644953471A94021DF437F21FE83E6 | sha256: D4A59FB62D8A7A138A49911110F8B2AB416196DF95F4CFC599ABB6EC61629E5E | sha512: AA96E1544FD0286FB1D6A77B8ACE8745F69EC4835CF0957C457AA3026B4AD5EC02E953C7BC106D80205109A85512D1DF99AB3DE7D41300E96858298AE5767FE5
tools\TfsCmdlets\Lib\Desktop\System.Globalization.Extensions.dll
md5: 8DE05921A38C0FF54E6D4B4ED0C32235 | sha1: 5BA1692964F8732D2CAAFA6A8D1009DFB8B4A764 | sha256: F690794A0296D8DAD4F30D626A8A89121DF51B5909E440DA08707B09518D040E | sha512: B7DAE61979760224EDDC28C717B78AABDCDE2C9ACD3659958041D08B44CDA12E9D62F15B436691213771A4B32714BD78D54D2BA4C90471FC7BFF4BF274C66C07
tools\TfsCmdlets\Lib\Desktop\System.IdentityModel.Tokens.Jwt.dll
md5: F9CA978B29C5B56B502CC37DEA7AA8E1 | sha1: C8914013108C48086E09D893F8FD0507D719300A | sha256: 919B933E167252DE36A9A752DD296C475475F1817A19D9F892D0FFEA3854165D | sha512: EDF2294B19ECB580E9356E1D2B549349FD668DBE66A3CE0D2E3D50C158049E9A93A226078550C1313A39390ABD24128C4A68226E2A14A43D0BB7547B2E111A23
tools\TfsCmdlets\Lib\Desktop\System.IO.Compression.dll
md5: B2CE49C37351D7A7471CD20C9E02B6E9 | sha1: 44EB7732131B4B1B25EA8D023C3D2F544E017F24 | sha256: 76FCACCF84313BF78F523B3BC8198C2D040DABDC04A5DC863B46C8AF7AC10A88 | sha512: 40980B050861F7C4F1ED5B71F7F7FD91052FCFC1C49B7B3490D9A4FD68FEC8FD3C95AF38D113ABA8E7F1CE2B4CEADD1B6D66C5D1EA68064EC6265C266BE1AFC5
tools\TfsCmdlets\Lib\Desktop\System.Net.Http.dll
md5: 5A5E18C377228FDB1D3DB74F1140C1BF | sha1: E36366D2CCB64AEBCC9DF8FD7FADC7A9BB562AF7 | sha256: 8646A26A64928866BBE8746F3323A1F446C5A28C10B6B81DF9BF4A08336B8C02 | sha512: 0C308B29FEBFB5D4CB52BD3B7B0C61A5844EBF1BDF305BE2B89FB0F5040F52ABD8557E9C4245A4F35C527A23674F1AE97BB12CC3A02A7DD7C8387208FCC73152
tools\TfsCmdlets\Lib\Desktop\System.Net.Http.Formatting.dll
md5: B676D5E9828D6010339743F236F54EC4 | sha1: 0DFF461BE2E04EBF6DA5F4F2D3EB639CC2E0A8B5 | sha256: 7B58ADC6E23B24CD6615B35E848A002BDA053A26D48F9DDAFACFC8098E97C49C | sha512: CCA0ED47B391B12F44716DB1921314E7DCBF2A9F6B0916C78642B4AA814825C570569B103A7F5E298E9C02DBAE22E7CB905F08F80F94AD6DCB69FE09085CD8A8
tools\TfsCmdlets\Lib\Desktop\System.Net.Sockets.dll
md5: B59AF5CBDDAFDC5DC5FF3E34533D6857 | sha1: DEDE511B5270D55E306E1A744E4BC0384A35C8BE | sha256: A4B4BB8B9BE478600F48E43AE8571E6C123F8130923067F10FC92546D0900FB6 | sha512: 4E0104C8A650943D8680F0BD449D4B953B25FF909BF50BE19772E88295F9CE7542F29211528E20B4AD798D26251A50211EEEA8685E3D81FAB72DF1380CA6B984
tools\TfsCmdlets\Lib\Desktop\System.Runtime.Serialization.Primitives.dll
md5: A84B438DBD4DF29560EEB5765E03723A | sha1: 37DE951F703687CF061556B1A52C6F548CBF779E | sha256: A576D1609CC08C46A46CE708B7FDAE33452A3BEFB701128A5BC9D6FF1F1B6DFD | sha512: EE6855BCA6EE6FF8AC7CE5C0565CCC77C35E5F1B3096F1EDE2C018D3364683BC289C6C520472BA46E174FDBD821EA673BFFA7DABC9358CE4C86D26F0C08FCC7C
tools\TfsCmdlets\Lib\Desktop\System.Security.AccessControl.dll
md5: 996AAB294E1D369B148D732E5EC0DFDC | sha1: 28465FD34680A082506F160107F350B46140A1AA | sha256: 1FDA491EEBDB19EA0A83CF6C16AB5DD004A1BFDFC845EDE017EBE0945BEB927F | sha512: 5E6B172D2DE5928915B38EC80C7B76F42430AAC959F04AA3521C63495B6F3C4F82DF139C275E9FC5024B1A0A4F307DAADE6130B6028779F98F456282AE8B61CD
tools\TfsCmdlets\Lib\Desktop\System.Security.Cryptography.Algorithms.dll
md5: 79C6FA92DBA0C34DB2C412BFA62E48A3 | sha1: 583A3E0F870ECE6419350A8656D7D4AC21746F1B | sha256: A83CA72A33172E977D7FFF1E96FA6CBAC6BEFE86DCA21D651C04578210325225 | sha512: 386AB22AA5299C5D4FB3D8B551F97C916129F05FA87D4D3D90B58BE1CC304FFD3431B0B5402A0A77F2DB64B713F31BA60B3D006D0F01EB5A5195A4307ED7F590
tools\TfsCmdlets\Lib\Desktop\System.Security.Principal.Windows.dll
md5: BE2962225B441CC23575456F32A9CF6A | sha1: 9A5BE1FCF410FE5934D720329D36A2377E83747E | sha256: B4D8E15ADC235D0E858E39B5133E5D00A4BAA8C94F4F39E3B5E791B0F9C0C806 | sha512: 3F7692E94419BFFE3465D54C0E25C207330CD1368FCDFAD71DBEED1EE842474B5ABCB03DBA5BC124BD10033263F22DC9F462F12C20F866AEBC5C91EB151AF2E6
tools\TfsCmdlets\Lib\Desktop\System.Security.SecureString.dll
md5: A6DE3093FFB397AF3E4D2A91FA46B738 | sha1: FB9FF696F96BB574EBD40C2AC9C980FE45AB0F84 | sha256: 9239DE3543EA4DCF71AD86F16AA23EEB760566BC69078925900D0E41EEC859AC | sha512: 3EC05A1DE21EC4C96D6137788A868342AADE033B2D6E9ED7972C8FBEF3503CD03DD4728BA34E37C577AC301C056BB8C142516332C31D2F131599021A307DA86B
tools\TfsCmdlets\Lib\Desktop\System.Threading.Overlapped.dll
md5: C8CE5A96458742641AB9752B5B564039 | sha1: B3315E3657442F82B9A84E9ADE610846D183CAD1 | sha256: A74A34E69B5226F0EE4882F7AC1FC0A88602139ED439202C5FC5C8ED489BFA11 | sha512: 16D4C5180ED313C10886C1E411BF38B5B664D5D3E1B9CB1CDE2D6DDF9EFE39367A792E818636B5E12F90A027C68347A546BF43B386195F50904BD9B5882A005E
tools\TfsCmdlets\Lib\Desktop\System.ValueTuple.dll
md5: 23EE4302E85013A1EB4324C414D561D5 | sha1: D1664731719E85AAD7A2273685D77FEB0204EC98 | sha256: E905D102585B22C6DF04F219AF5CBDBFA7BC165979E9788B62DF6DCC165E10F4 | sha512: 6B223CE7F580A40A8864A762E3D5CCCF1D34A554847787551E8A5D4D05D7F7A5F116F2DE8A1C793F327A64D23570228C6E3648A541DD52F93D58F8F243591E32
tools\TfsCmdlets\Lib\Desktop\System.Web.Http.dll
md5: 145EB749E3B061DAB3360B142690FFD6 | sha1: F0759599123B46212080FA42E84F23D2EA2D7B0A | sha256: FD09C793BDEB4AFFB991D04D2AE1B09DE0B81422D57968231884C66C8410DE02 | sha512: 3DEF8EC69FACD7BE6B0FE0082548DFC46D2853AF721E22014CF1A1C46F7C7D0CE4C32283EB8EA38763B924CEB0DAB1AA24EAD943F93455A59C7028B680A5730E
tools\TfsCmdlets\Lib\Desktop\System.Web.Http.WebHost.dll
md5: D1976F7280F75E8B6D8FBB2D03BED6EE | sha1: AA964BFDF49330C118FD2FC186FB6633266D3551 | sha256: 4CA246031C9CC050FE3E88C3F5ABF970612211155CD6FFA6C9E81E5050337A36 | sha512: 88EB23BFF00D9F61E664E54FC873F03481A7E25C476C7C92A988132CB9E79373AD41938B8C158CBB48B3CC8F55184E72CF8E54775185EFA1020F9EF35F025BB7
tools\TfsCmdlets\Lib\Desktop\System.Xml.XPath.XDocument.dll
md5: 54A0AE378C4D20F237E8B01B29E907F2 | sha1: 08FD364458B935C82ECCCA43AC53EA182DA4EA45 | sha256: 05DF614F3252B522D2AA078585DCDDD502A25BDB06CA3A44B1C0D24C1ADB85A2 | sha512: 12EA4FFBCD243F3DB5FEC4D4901F5550F044E49478A909416E7B588EB15E9C6DD005D8255ED8235E803C76B57FBEEBA6FC9B0B85A8155787C1D885537EB87611
tools\TfsCmdlets\Lib\Desktop\TfsCmdlets.Common.dll
md5: DBB887D236DF31CD21481CADF40685CF | sha1: 50391920CBD979A7893E15FED36D6172BC7DC4F2 | sha256: 960144567453D87D3DB1E8F86502CBD0A6F9B088D192DCDCFBCDD573C54991ED | sha512: ACB8F776DA0A836A6E6ADFAD052558B7696C624C3CD9F59EEDAB3E6919695F0A2716C292D7FBE9C70DF1AD5808295AAC0E680BBB3E2409C06E8EF46E4FEB2D10
tools\TfsCmdlets\Lib\Desktop\TfsCmdlets.Common.pdb
 
tools\TfsCmdlets\Lib\Desktop\TfsCmdlets.dll
md5: 5880B7564944394DD626E7DA79C79F98 | sha1: 62FD5D4A798CAE4B47C998146B8CD5EC74B38917 | sha256: 53B2C55B4C859B9D77BFC3B1EACCD0D1A64D475B4DFF80A07BAB67C44921F18E | sha512: CDB5394166588FF8D6B21D9911B582787F198D59BF9582F9CACFABC9DB8C18FD3081B17BA92866D9AF94AF61A13EE0AF781E7C747F57735513C50384BB0BFC18
tools\TfsCmdlets\Lib\Desktop\TfsCmdlets.pdb
 
tools\TfsCmdlets\Lib\Desktop\TfsCmdlets.xml
<?xml version="1.0"?>
<doc>
    <assembly>
        <name>TfsCmdlets</name>
    </assembly>
    <members>
        <member name="T:TfsCmdlets.AssemblyResolver">
            <summary>
            This class is used to resolve TfsCmdlets assemblies in runtime.
            </summary>
        </member>
        <member name="P:TfsCmdlets.AssemblyResolver.Assemblies">
            <summary>
            Mantains a list of all assemblies stored in the /Lib folder of this module to support 
            on-demand assembly resolving and loading
            </summary>
        </member>
        <member name="M:TfsCmdlets.AssemblyResolver.Register">
            <summary>
            Registers the Assembly Resolver in the platform-specific assembly resolution mechanism and 
            loads the list of private assemblies to the Assemblies dictionary
            </summary>
        </member>
        <member name="T:TfsCmdlets.AssemblyResolver.AssemblyEntry">
            <summary>
            Represents a private assembly
            </summary>
        </member>
        <member name="M:TfsCmdlets.AssemblyResolver.AssemblyEntry.#ctor(System.String,System.String)">
            <summary>
            Creates an instance from an assembly name and its file path
            </summary>
            <param name="name">Assembly name (e.g. "Newtonsoft.json")</param>
            <param name="path">Full path to assembly file (e.g. "X:/path/to/module/Lib/Newtonsoft.json")</param>
        </member>
        <member name="P:TfsCmdlets.AssemblyResolver.AssemblyEntry.Name">
            <summary>
             Assembly name
            </summary>
        </member>
        <member name="P:TfsCmdlets.AssemblyResolver.AssemblyEntry.Path">
            <summary>
            Full path to assembly file
            </summary>
        </member>
        <member name="P:TfsCmdlets.AssemblyResolver.AssemblyEntry.IsLoaded">
            <summary>
            Indicates whether this assembly has already been loaded by the Assembly Resolver
            </summary>
        </member>
        <member name="P:TfsCmdlets.AssemblyResolver.AssemblyEntry.Assembly">
            <summary>
            The actual assembly represented by this instance. If the assembly wasn't previously
            loaded, it will be read from disk and returned to the caller
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Admin.GetConfigurationConnectionString">
            <summary>
            Gets the configuration server database connection string.
            </summary>
            <related uri="https://tfscmdlets.dev/admin/get-tfsconfigurationConnectionstring/">Online version:</related>
            <related>Get-TfsInstallationPath</related>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Admin.GetConfigurationConnectionString.ComputerName">
            <summary>
            Specifies the name of a Team Foundation Server application tier from which to 
            retrieve the connection string.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Admin.GetConfigurationConnectionString.Session">
            <summary>
            The machine name of the server where the TFS component is installed. 
            It must be properly configured for PowerShell Remoting in case it's a remote machine. 
            Optionally, a System.Management.Automation.Runspaces.PSSession object pointing to a 
            previously opened PowerShell Remote session can be provided instead. 
            When omitted, defaults to the local machine where the script is being run
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Admin.GetConfigurationConnectionString.Version">
            <summary>
            The TFS version number, represented by the year in its name. For e.g. TFS 2015, use "2015".
            When omitted, will default to the newest installed version of TFS / Azure DevOps Server
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Admin.GetConfigurationConnectionString.Credential">
            <summary>
            The user credentials to be used to access a remote machine. Those credentials must have 
            the required permission to execute a PowerShell Remote session on that computer.
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Admin.GetInstallationPath">
            <summary>
              Gets the installation path of a given Team Foundation Server component.
            </summary>
            <remarks>
             Many times a Team Foundation Server admin needs to retrieve the location where 
             TFS is actually installed. That can be useful, for instance, to locate tools like 
             TfsSecurity or TfsServiceControl. That information is recorded at setup time, 
             in a well-known location in the Windows Registry of the server where TFS is installed.
            </remarks>
            <example>
              <code>Get-TfsInstallationPath -Version 2017</code>
              <para>Gets the root folder (the BaseInstallationPath) of TFS in the local server where the cmdlet is being run</para>
            </example>
            <example>
              <code>Get-TfsInstallationPath -Computer SPTFSSRV -Version 2015 -Component SharepointExtensions -Credentials (Get-Credentials)</code>
              <para>Gets the location where the SharePoint Extensions have been installed in the remote 
                    server SPTFSSRV, prompting for admin credentials to be used for establishing a 
                    PS Remoting session to the server</para>
            </example>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Admin.GetInstallationPath.ComputerName">
            <summary>
            The machine name of the server where the TFS component is installed. 
            It must be properly configured for PowerShell Remoting in case it's a remote machine. 
            Optionally, a System.Management.Automation.Runspaces.PSSession object pointing to a 
            previously opened PowerShell Remote session can be provided instead. 
            When omitted, defaults to the local machine where the script is being run
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Admin.GetInstallationPath.Session">
            <summary>
            The machine name of the server where the TFS component is installed. 
            It must be properly configured for PowerShell Remoting in case it's a remote machine. 
            Optionally, a System.Management.Automation.Runspaces.PSSession object pointing to a 
            previously opened PowerShell Remote session can be provided instead. 
            When omitted, defaults to the local machine where the script is being run
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Admin.GetInstallationPath.Component">
            <summary>
            Indicates the TFS component whose installation path is being searched for. 
            For the main TFS installation directory, use BaseInstallation. When omitted, 
            defaults to BaseInstallation.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Admin.GetInstallationPath.Version">
            <summary>
            The TFS version number, represented by the year in its name. For e.g. TFS 2015, use "2015".
            When omitted, will default to the newest installed version of TFS / Azure DevOps Server
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Admin.GetInstallationPath.Credential">
            <summary>
            The user credentials to be used to access a remote machine. Those credentials must have 
            the required permission to execute a PowerShell Remote session on that computer and also 
            the permission to access the Windows Registry.
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Admin.GetVersion">
            <summary>
              Gets the version information about Team Foundation / Azure DevOps servers and 
              Azure DevOps Services organizations.
            </summary>
            <remarks>
            The Get-TfsVersion cmdlet retrieves version information from the supplied team project collection or Azure DevOps organization. 
            When available/applicable, detailed information about installed updates, deployed sprints and so on are also provided.
            </remarks>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Admin.GetVersion.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Admin.GetVersion.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Admin.Registry.GetRegistryValue">
            <summary>
              Gets the value of a given Team Foundation Server registry entry.
            </summary>
            <remarks>
              The 'Get-TfsRegistry' cmdlet retrieves the value of a TFS registry entry at the given path and scope. 
            
              Registry entries can be scoped to the server, to a collection or to a specific user. 
            </remarks>
            <notes>
              The registry is an internal, hierarchical database that TFS uses to store its 
              configuration and user-level settings and preferences.
            
              IMPORTANT: Retrieving user-scoped values is currently not supported.
            </notes>
            <example>
              <code>Get-TfsRegistryValue -Path '/Service/Integration/Settings/EmailEnabled'</code>
              <para>Gets the current value of the 'EmailEnabled' key in the TFS Registry</para>
            </example>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Admin.Registry.GetRegistryValue.Path">
            <summary>
            Specifies the full path of the TFS Registry key
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Admin.Registry.GetRegistryValue.Scope">
            <summary>
            Specifies the scope under which to search for the key. 
            When omitted, defaults to the Server scope.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Admin.Registry.GetRegistryValue.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Admin.Registry.GetRegistryValue.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Admin.Registry.SetRegistryValue">
            <summary>
              Sets the value of a given Team Foundation Server registry entry.
            </summary>
            <remarks>
              The 'Set-TfsRegistry' cmdlet changes the value of a TFS registry key to the 
              value specified in the command.
            </remarks>
            <example>
              <code>Get-TfsRegistryValue -Path '/Service/Integration/Settings/EmailEnabled'</code>
              <para>Gets the current value of the 'EmailEnabled' key in the TFS Registry</para>
            </example>
            <notes>
              The registry is an internal, hierarchical database that TFS uses to store its 
              configuration and user-level settings and preferences.
            
              IMPORTANT: Retrieving user-scoped values is currently not supported.
            </notes>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Admin.Registry.SetRegistryValue.Path">
            <summary>
            Specifies the full path of the TFS Registry key
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Admin.Registry.SetRegistryValue.Value">
            <summary>
            Specifies the new value of the Registry key. To remove an existing value, 
            set it to $null
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Admin.Registry.SetRegistryValue.Scope">
            <summary>
            Specifies the scope under which to search for the key. 
            When omitted, defaults to the Server scope.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Admin.Registry.SetRegistryValue.Passthru">
            <summary>
            HELP_PARAM_PASSTHRU
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Admin.Registry.SetRegistryValue.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Admin.Registry.SetRegistryValue.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Artifact.GetArtifact">
            <summary>
            Gets information from one or more artifact feeds.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Artifact.GetArtifact.Artifact">
            <summary>
            Specifies the package (artifact) name. Wildcards are supported. 
            When omitted, returns all packages in the specified feed.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Artifact.GetArtifact.Feed">
            <summary>
            Specifies the feed name. 
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Artifact.GetArtifact.IncludeDeleted">
            <summary>
            Includes deletes packages in the result. 
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Artifact.GetArtifact.IncludeDescription">
            <summary>
            Includes the package description in the results. 
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Artifact.GetArtifact.IncludePrerelease">
            <summary>
            Includes prerelease packages in the results. Applies only to Nuget packages.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Artifact.GetArtifact.IncludeDelisted">
            <summary>
            Includes delisted packages in the results. Applies only to Nuget packages.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Artifact.GetArtifact.ProtocolType">
            <summary>
            Returns only packages of the specified protocol type.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Artifact.GetArtifact.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Artifact.GetArtifact.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Artifact.GetArtifact.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Artifact.GetArtifactFeed">
            <summary>
            Gets information from one or more artifact feeds.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Artifact.GetArtifactFeed.Feed">
            <summary>
            Specifies the feed name. Wildcards are supported. 
            When omitted, returns all feeds.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Artifact.GetArtifactFeed.Scope">
            <summary>
            Returns only feeds from the given scope (collection or project). 
            When omitted, returns all feeds.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Artifact.GetArtifactFeed.Role">
            <summary>
            Filters by role. Returns only those feeds where the currently logged on user
            has one of the specified roles: either Administrator, Contributor, 
            or Reader level permissions. When omitted, filters by Administrator role.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Artifact.GetArtifactFeed.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Artifact.GetArtifactFeed.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Artifact.GetArtifactFeed.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Artifact.GetArtifactFeedView">
            <summary>
            Gets information from one or more Git repositories in a team project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Artifact.GetArtifactFeedView.View">
            <summary>
            Specifies the view name. Wildcards are supported. 
            When omitted, returns all views.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Artifact.GetArtifactFeedView.Feed">
            <summary>
            Specifies the parent feed.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Artifact.GetArtifactFeedView.Scope">
            <summary>
            Returns only feeds from the given scope (collection or project). 
            When omitted, returns all feeds.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Artifact.GetArtifactFeedView.Role">
            <summary>
            Filters by role. Returns only those feeds where the currently logged on user
            has one of the specified roles: either Administrator, Contributor, 
            or Reader level permissions. When omitted, filters by Administrator role.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Artifact.GetArtifactFeedView.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Artifact.GetArtifactFeedView.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Artifact.GetArtifactFeedView.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Artifact.GetArtifactVersion">
            <summary>
            Gets information from one or more artifact feeds.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Artifact.GetArtifactVersion.Version">
            <summary>
            Specifies the version to return. Wildcards are supported. 
            When omitted, returns all versions of the specified package.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Artifact.GetArtifactVersion.Artifact">
            <summary>
            Specifies the package (artifact) name. 
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Artifact.GetArtifactVersion.Feed">
            <summary>
            Specifies the feed name. 
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Artifact.GetArtifactVersion.IncludeDeleted">
            <summary>
            Includes deletes packages in the result. 
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Artifact.GetArtifactVersion.IncludeDelisted">
            <summary>
            Includes delisted packages in the results. Applies only to Nuget packages.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Artifact.GetArtifactVersion.ProtocolType">
            <summary>
            Returns only packages of the specified protocol type.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Artifact.GetArtifactVersion.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Artifact.GetArtifactVersion.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Artifact.GetArtifactVersion.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Credential.NewCredential">
            <summary>
            Provides credentials to use when you connect to a Team Foundation Server 
            or Azure DevOps organization.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Credential.NewCredential.Url">
            <summary>
            Specifies the URL of the server, collection or organization to connect to.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Credential.NewCredential.Cached">
            <summary>
            HELP_PARAM_CACHED_CREDENTIAL
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Credential.NewCredential.UserName">
            <summary>
            HELP_PARAM_USER_NAME
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Credential.NewCredential.Password">
            <summary>
            HELP_PARAM_PASSWORD
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Credential.NewCredential.Credential">
            <summary>
            HELP_PARAM_CREDENTIAL
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Credential.NewCredential.PersonalAccessToken">
            <summary>
            HELP_PARAM_PERSONAL_ACCESS_TOKEN
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Credential.NewCredential.Interactive">
            <summary>
            HELP_PARAM_INTERACTIVE
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.ExtensionManagement.DisableExtension">
            <summary>
            Disables an extension installed in the specified collection/organization.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ExtensionManagement.DisableExtension.Extension">
            <summary>
            Specifies the ID or the name of the extensions. Wilcards are supported. 
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ExtensionManagement.DisableExtension.Publisher">
            <summary>
            Specifies the ID or the name of the publisher. Wilcards are supported. 
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ExtensionManagement.DisableExtension.Passthru">
            <summary>
            HELP_PARAM_PASSTHRU
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ExtensionManagement.DisableExtension.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ExtensionManagement.DisableExtension.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.ExtensionManagement.EnableExtension">
            <summary>
            Enables a previously disabled extension installed in the specified collection/organization.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ExtensionManagement.EnableExtension.Extension">
            <summary>
            Specifies the ID or the name of the extensions. Wilcards are supported. 
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ExtensionManagement.EnableExtension.Publisher">
            <summary>
            Specifies the ID or the name of the publisher. Wilcards are supported. 
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ExtensionManagement.EnableExtension.Passthru">
            <summary>
            HELP_PARAM_PASSTHRU
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ExtensionManagement.EnableExtension.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ExtensionManagement.EnableExtension.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.ExtensionManagement.GetExtension">
            <summary>
            Gets one or more installed extensions in the specified collection.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ExtensionManagement.GetExtension.Extension">
            <summary>
            Specifies the ID or the name of the extensions. Wilcards are supported. 
            When omitted, returns all extensions installed in the specified organization/collection.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ExtensionManagement.GetExtension.Publisher">
            <summary>
            Specifies the ID or the name of the publisher. Wilcards are supported. 
            When omitted, returns all extensions installed in the specified organization/collection.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ExtensionManagement.GetExtension.IncludeDisabledExtensions">
            <summary>
            Includes disabled extensions in the result. When omitted, disabled extensions are not included in the result.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ExtensionManagement.GetExtension.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ExtensionManagement.GetExtension.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.ExtensionManagement.InstallExtension">
            <summary>
            Installs an extension in the specified organization/collection.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ExtensionManagement.InstallExtension.Extension">
            <summary>
            Specifies the ID of the extension to install.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ExtensionManagement.InstallExtension.Publisher">
            <summary>
            Specifies the ID of the publisher of the extension.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ExtensionManagement.InstallExtension.Version">
            <summary>
            Specifies the version of the extension to install. When omitted, installs the latest version.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ExtensionManagement.InstallExtension.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ExtensionManagement.InstallExtension.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.ExtensionManagement.UninstallExtension">
            <summary>
            Uninstalls one of more extensions from the specified organization/collection.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ExtensionManagement.UninstallExtension.Extension">
            <summary>
            Specifies the ID of the extension to uninstall.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ExtensionManagement.UninstallExtension.Publisher">
            <summary>
            Specifies the ID of the publisher of the extension.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ExtensionManagement.UninstallExtension.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ExtensionManagement.UninstallExtension.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Git.Branch.GetGitBranch">
            <summary>
            Gets information from one or more branches in a remote Git repository.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.Branch.GetGitBranch.Branch">
            <summary>
            Specifies the name of a branch in the supplied Git repository. Wildcards are supported. 
            When omitted, all branches are returned.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.Branch.GetGitBranch.Default">
            <summary>
            Returns the default branch in the given repository.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.Branch.GetGitBranch.Repository">
            <summary>
            HELP_PARAM_GIT_REPOSITORY
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.Branch.GetGitBranch.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.Branch.GetGitBranch.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.Branch.GetGitBranch.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Git.Branch.RemoveGitBranch">
            <summary>
            Removes from one or more branches from a remote Git repository.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.Branch.RemoveGitBranch.Branch">
            <summary>
            Specifies the name of a branch in the supplied Git repository. Wildcards are supported. 
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.Branch.RemoveGitBranch.Repository">
            <summary>
            HELP_PARAM_GIT_REPOSITORY
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.Branch.RemoveGitBranch.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.Branch.RemoveGitBranch.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.Branch.RemoveGitBranch.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Git.Commit.GetGitCommit">
            <summary>
            Gets information from one or more Git commits in a remote repository.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.Commit.GetGitCommit.Author">
            <summary>
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.Commit.GetGitCommit.Committer">
            <summary>
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.Commit.GetGitCommit.CompareVersion">
            <summary>
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.Commit.GetGitCommit.FromCommit">
            <summary>
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.Commit.GetGitCommit.FromDate">
            <summary>
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.Commit.GetGitCommit.ItemPath">
            <summary>
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.Commit.GetGitCommit.ToCommit">
            <summary>
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.Commit.GetGitCommit.ToDate">
            <summary>
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.Commit.GetGitCommit.ExcludeDeletes">
            <summary>
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.Commit.GetGitCommit.IncludeLinks">
            <summary>
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.Commit.GetGitCommit.IncludePushData">
            <summary>
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.Commit.GetGitCommit.IncludeUserImageUrl">
            <summary>
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.Commit.GetGitCommit.ShowOldestCommitsFirst">
            <summary>
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.Commit.GetGitCommit.Skip">
            <summary>
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.Commit.GetGitCommit.Top">
            <summary>
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.Commit.GetGitCommit.Repository">
            <summary>
            HELP_PARAM_GIT_REPOSITORY
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.Commit.GetGitCommit.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.Commit.GetGitCommit.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.Commit.GetGitCommit.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Git.DisableGitRepository">
            <summary>
            Disables one or more Git repositories.
            </summary>
            <remarks>
            Disables access to the repository. When a repository is disabled it cannot be 
            accessed (including clones, pulls, pushes, builds, pull requests etc) 
            but remains discoverable, with a warning message stating it is disabled.
            </remarks>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.DisableGitRepository.Repository">
            <summary>
            Specifies the name or ID of a Git repository. Wildcards are supported. 
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.DisableGitRepository.Passthru">
            <summary>
            HELP_PARAM_PASSTHRU
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.DisableGitRepository.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.DisableGitRepository.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.DisableGitRepository.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Git.EnableGitRepository">
            <summary>
            Enables one or more Git repositories.
            </summary>
            <remarks>
            This cmdlets re-enables access to a repository. When a repository is 
            disabled it cannot be accessed (including clones, pulls, pushes, builds, 
            pull requests etc) but remains discoverable, with a warning message 
            stating it is disabled.
            </remarks>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.EnableGitRepository.Repository">
            <summary>
            Specifies the name or ID of a Git repository. Wildcards are supported. 
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.EnableGitRepository.Passthru">
            <summary>
            HELP_PARAM_PASSTHRU
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.EnableGitRepository.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.EnableGitRepository.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.EnableGitRepository.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Git.GetGitRepository">
            <summary>
            Gets information from one or more Git repositories in a team project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.GetGitRepository.Repository">
            <summary>
            Specifies the name or ID of a Git repository. Wildcards are supported. 
            When omitted, all Git repositories in the supplied team project are returned.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.GetGitRepository.Default">
            <summary>
            Returns the default repository in the given team project.
            The default repository is the one that is created when a team project is created, and has the same name as the team project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.GetGitRepository.IncludeParent">
            <summary>
            Returns details about the repository's parent (forked) repository, if it has one.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.GetGitRepository.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.GetGitRepository.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.GetGitRepository.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Git.Item.GetGitItem">
            <summary>
            Gets information from one or more items (folders and/or files) in a remote Git repository.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.Item.GetGitItem.Item">
            <summary>
            Specifies the path to items (folders and/or files) in the supplied Git repository. Wildcards are supported. 
            When omitted, all items in the root of the Git repository are retrieved.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.Item.GetGitItem.Repository">
            <summary>
            HELP_PARAM_GIT_REPOSITORY
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.Item.GetGitItem.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.Item.GetGitItem.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.Item.GetGitItem.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Git.NewGitRepository">
            <summary>
            Creates a new Git repository in a team project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.NewGitRepository.Repository">
            <summary>
            Specifies the name of the new repository
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.NewGitRepository.ForkFrom">
            <summary>
            Forks the specified reposity. To fork a repository from another team project, 
            specify the repository name in the form "project/repository" or pass in the result of a 
            previous call to Get-TfsGitRepository that returns the source repository.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.NewGitRepository.SourceBranch">
            <summary>
            Forks the specified branch in the source repository. When omitted, forks all branches.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.NewGitRepository.Passthru">
            <summary>
            HELP_PARAM_PASSTHRU
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.NewGitRepository.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.NewGitRepository.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.NewGitRepository.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Git.Policy.GetGitBranchPolicy">
            <summary>
            Gets the Git branch policy configuration of the given Git branches.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.Policy.GetGitBranchPolicy.PolicyType">
            <summary>
            Specifies the policy type of the branch policy to return. Wildcards are supported. 
            When omitted, all branch policies defined for the given branch are returned.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.Policy.GetGitBranchPolicy.Branch">
            <summary>
            Specifies the name of the branch to query for branch policies. When omitted, 
            the default branch in the given repository is queried.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.Policy.GetGitBranchPolicy.Repository">
            <summary>
            HELP_PARAM_GIT_REPOSITORY
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.Policy.GetGitBranchPolicy.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.Policy.GetGitBranchPolicy.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.Policy.GetGitBranchPolicy.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Git.Policy.GetGitPolicyType">
            <summary>
            Gets one or more Git branch policies supported by the given team project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.Policy.GetGitPolicyType.PolicyType">
            <summary>
            Specifies the display name or ID of the policy type. Wildcards are supported.
            When omitted, all policy types supported by the given team project are returned.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.Policy.GetGitPolicyType.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.Policy.GetGitPolicyType.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.Policy.GetGitPolicyType.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Git.RemoveGitRepository">
            <summary>
            Deletes one or more Git repositories from a team project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.RemoveGitRepository.Repository">
            <summary>
            Specifies the repository to be deleted. Value can be the name or ID of a Git repository, 
            as well as a Microsoft.TeamFoundation.SourceControl.WebApi.GitRepository object representing a Git
            repository.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.RemoveGitRepository.Force">
            <summary>
            HELP_PARAM_FORCE_REMOVE
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.RemoveGitRepository.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.RemoveGitRepository.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.RemoveGitRepository.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Git.RenameGitRepository">
            <summary>
            Renames a Git repository in a team project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.RenameGitRepository.Repository">
            <summary>
            Specifies the repository to be renamed. Value can be the name or ID of a Git repository, 
            as well as a Microsoft.TeamFoundation.SourceControl.WebApi.GitRepository object representing a Git
            repository.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.RenameGitRepository.NewName">
            <summary>
            HELP_PARAM_NEWNAME
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.RenameGitRepository.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.RenameGitRepository.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Git.RenameGitRepository.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Identity.GetIdentity">
            <summary>
            Gets one or more identities that represents either users or groups in Azure DevOps. 
            This cmdlets resolves legacy identity information for use with older APIs such as the Security APIs
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Identity.GetIdentity.Identity">
            <summary>
            Specifies the user or group to be retrieved. Supported values are: 
            User/group name, email, or ID
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Identity.GetIdentity.QueryMembership">
            <summary>
            Specifies how group membership information should be processed  
            when the returned identity is a group. "Direct" fetches direct members (both users 
            and groups) of the group. "Expanded" expands contained groups recursively and returns 
            their contained users. "None" is the fastest option as it fetches no membership 
            information. When omitted, defaults to Direct.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Identity.GetIdentity.Current">
            <summary>
            Returns an identity representing the user currently logged in to
            the Azure DevOps / TFS instance
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Identity.GetIdentity.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Identity.GetIdentity.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Identity.Group.AddGroupMember">
            <summary>
            Adds group members to an Azure DevOps group.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Identity.Group.AddGroupMember.Member">
            <summary>
            Specifies the member (user or group) to add to the given group.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Identity.Group.AddGroupMember.Group">
            <summary>
            Specifies the group to which the member is added.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Identity.Group.AddGroupMember.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Identity.Group.AddGroupMember.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Identity.Group.GetGroup">
            <summary>
            Gets one or more Azure DevOps groups.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Identity.Group.GetGroup.Group">
            <summary>
            Specifies the group to be retrieved. Supported values are: 
            Group name or ID. Wildcards are supported.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Identity.Group.GetGroup.Scope">
            <summary>
            Specifies the scope under which to search for the group. 
            When omitted, defaults to the Collection scope.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Identity.Group.GetGroup.Recurse">
            <summary>
            Searches recursively for groups in the scopes under the specified scope.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Identity.Group.GetGroup.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Identity.Group.GetGroup.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Identity.Group.GetGroup.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Identity.Group.GetGroupMember">
            <summary>
            Gets the members of a Azure DevOps group
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Identity.Group.GetGroupMember.Group">
            <summary>
            Specifies the group fom which to get its members.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Identity.Group.GetGroupMember.Member">
            <summary>
            Specifies the member (user or group) to get from the given group. Wildcards are supported.
            When omitted, all group members are returned.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Identity.Group.GetGroupMember.Recurse">
            <summary>
            Recursively expands all member groups, returning the users and/or groups contained in them
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Identity.Group.GetGroupMember.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Identity.Group.GetGroupMember.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Identity.Group.NewGroup">
            <summary>
            Creates a new Azure DevOps group.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Identity.Group.NewGroup.Group">
            <summary>
            Specifies the name of the new group.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Identity.Group.NewGroup.Description">
            <summary>
            Specifies a description for the new group.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Identity.Group.NewGroup.Scope">
            <summary>
            Specifies the scope under which to create the group. 
            When omitted, defaults to the Collection scope.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Identity.Group.NewGroup.Passthru">
            <summary>
            HELP_PARAM_PASSTHRU
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Identity.Group.NewGroup.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Identity.Group.NewGroup.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Identity.Group.NewGroup.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Identity.Group.RemoveGroup">
            <summary>
            Removes an Azure DevOps group.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Identity.Group.RemoveGroup.Group">
            <summary>
            Specifies the group to be removed.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Identity.Group.RemoveGroup.Scope">
            <summary>
            Specifies the scope under which to search for the group. 
            When omitted, defaults to the Collection scope.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Identity.Group.RemoveGroup.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Identity.Group.RemoveGroup.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Identity.Group.RemoveGroup.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Identity.Group.RemoveGroupMember">
            <summary>
            Removes a member from an Azure DevOps group.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Identity.Group.RemoveGroupMember.Member">
            <summary>
            Specifies the member (user or group) to remove from the given group.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Identity.Group.RemoveGroupMember.Group">
            <summary>
            Specifies the group from which the member is removed.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Identity.Group.RemoveGroupMember.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Identity.Group.RemoveGroupMember.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Identity.User.GetUser">
            <summary>
            Gets information about one or more Azure DevOps users.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Identity.User.GetUser.User">
            <summary>
            Specifies the user or group to be retrieved. Supported values are: 
            User/group name, email, or ID
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Identity.User.GetUser.Current">
            <summary>
            Returns an identity representing the user currently logged in to
            the Azure DevOps / TFS instance
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Identity.User.GetUser.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Identity.User.GetUser.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Organization.ConnectOrganization">
            <summary>
            Connects to an Azure DevOps organization or a TFS Team Project Collection. 
            </summary>
            <remarks>
            The Connect-TfsOrganization cmdlet connects to an Azure DevOps organization
            or a TFS Team Project Collection.
            
            That connection can be later reused by other TfsCmdlets commands until it's closed 
            by a call to Disconnect-TfsOrganization.
            </remarks>
            <notes>
            Most cmdlets in the TfsCmdlets module require a Collection object to be provided via their 
            -Collection argument in order to access a TFS instance. Those cmdlets will use the connection 
            opened by Connect-TfsOrganization as their "default connection".
            
            In other words, TFS cmdlets (e.g. New-TfsWorkItem) that have a -Collection argument will use the connection 
            provided by Connect-TfsOrganization by default.
            </notes>
            <example>
              <code>Connect-TfsOrganization -Collection http://tfs:8080/tfs/DefaultCollection</code>
              <para>Connects to a collection called "DefaultCollection" in a TF server called "tfs" 
                    using the cached credentials of the logged-on user</para>
            </example>
            <example>
              <code>Connect-TfsOrganization -Collection http://tfs:8080/tfs/DefaultCollection -Interactive</code>
              <para>Connects to a collection called "DefaultCollection" in a Team Foundation server called 
                    "tfs", firstly prompting the user for credentials (it ignores the cached credentials for 
                    the currently logged-in user). It's equivalent to the command: `Connect-TfsOrganization 
                    -Collection http://tfs:8080/tfs/DefaultCollection -Credential (Get-TfsCredential -Interactive)`
              </para>
            </example>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Organization.ConnectOrganization.Organization">
            <summary>
             Specifies the URL to the Azure DevOps Organization or Team Project Collection to connect to, 
             a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. 
             You can also connect to an Azure DevOps Services organization by simply providing its name 
             instead of the full URL. 
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Organization.ConnectOrganization.Passthru">
            <summary>
            HELP_PARAM_PASSTHRU
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Organization.ConnectOrganization.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Organization.ConnectOrganization.Cached">
            <summary>
            HELP_PARAM_CACHED_CREDENTIAL
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Organization.ConnectOrganization.UserName">
            <summary>
            HELP_PARAM_USER_NAME
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Organization.ConnectOrganization.Password">
            <summary>
            HELP_PARAM_PASSWORD
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Organization.ConnectOrganization.Credential">
            <summary>
            HELP_PARAM_CREDENTIAL
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Organization.ConnectOrganization.PersonalAccessToken">
            <summary>
            HELP_PARAM_PERSONAL_ACCESS_TOKEN
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Organization.ConnectOrganization.Interactive">
            <summary>
            HELP_PARAM_INTERACTIVE
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Organization.DisconnectOrganization">
            <summary>
            Disconnects from the currently connected Azure DevOps organization.
            </summary>
            <remarks>
            The Disconnect-TfsOrganization cmdlet removes the connection previously set by its 
            counterpart Connect-TfsOrganization. Therefore, cmdlets relying on a "default organization/collection" 
            as provided by "Get-TfsOrganization -Current" will no longer work after a call to 
            this cmdlet, unless their -Collection argument is provided or a new call to 
            Connect-TfsTeam is made.
            </remarks>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Organization.GetOrganization">
            <summary>
            Gets one of more team project collections (organizations in Azure DevOps).
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Organization.GetOrganization.Organization">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Organization.GetOrganization.Current">
            <summary>
            Returns the organization specified in the last call to 
            Connect-TfsOrganization (i.e. the "current" organization)
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Organization.GetOrganization.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Organization.GetOrganization.Cached">
            <summary>
            HELP_PARAM_CACHED_CREDENTIAL
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Organization.GetOrganization.UserName">
            <summary>
            HELP_PARAM_USER_NAME
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Organization.GetOrganization.Password">
            <summary>
            HELP_PARAM_PASSWORD
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Organization.GetOrganization.Credential">
            <summary>
            HELP_PARAM_CREDENTIAL
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Organization.GetOrganization.PersonalAccessToken">
            <summary>
            HELP_PARAM_PERSONAL_ACCESS_TOKEN
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Organization.GetOrganization.Interactive">
            <summary>
            HELP_PARAM_INTERACTIVE
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Pipeline.Build.Definition.DisableBuildDefinition">
            <summary>
            Disables a build/pipeline definition.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.Definition.DisableBuildDefinition.Definition">
            <summary>
            Specifies the pipeline name/path.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.Definition.DisableBuildDefinition.Passthru">
            <summary>
            HELP_PARAM_PASSTHRU
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.Definition.DisableBuildDefinition.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.Definition.DisableBuildDefinition.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.Definition.DisableBuildDefinition.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Pipeline.Build.Definition.EnableBuildDefinition">
            <summary>
            Enables a previously disabled build/pipeline definition.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.Definition.EnableBuildDefinition.Definition">
            <summary>
            Specifies the pipeline name/path.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.Definition.EnableBuildDefinition.Passthru">
            <summary>
            HELP_PARAM_PASSTHRU
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.Definition.EnableBuildDefinition.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.Definition.EnableBuildDefinition.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.Definition.EnableBuildDefinition.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Pipeline.Build.Definition.GetBuildDefinition">
            <summary>
            Gets one or more build/pipeline definitions in a team project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.Definition.GetBuildDefinition.Definition">
            <summary>
            Specifies the pipeline path. Wildcards are supported. 
            When omitted, all pipelines definitions in the supplied team project are returned.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.Definition.GetBuildDefinition.QueryOrder">
            <summary>
            Specifies the query order. When omitted, defaults to None.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.Definition.GetBuildDefinition.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.Definition.GetBuildDefinition.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.Definition.GetBuildDefinition.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Pipeline.Build.Definition.ResumeBuildDefinition">
            <summary>
            Resumes (unpauses) a previously suspended build/pipeline definition.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.Definition.ResumeBuildDefinition.Definition">
            <summary>
            Specifies the pipeline name/path.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.Definition.ResumeBuildDefinition.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.Definition.ResumeBuildDefinition.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.Definition.ResumeBuildDefinition.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Pipeline.Build.Definition.SuspendBuildDefinition">
            <summary>
            Suspends (pauses) a build/pipeline definition.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.Definition.SuspendBuildDefinition.Definition">
            <summary>
            Specifies the pipeline name/path.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.Definition.SuspendBuildDefinition.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.Definition.SuspendBuildDefinition.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.Definition.SuspendBuildDefinition.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Pipeline.Build.Folder.GetBuildDefinitionFolder">
            <summary>
            Gets one or more build/pipeline definition folders in a team project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.Folder.GetBuildDefinitionFolder.Folder">
            <summary>
            Specifies the folder path. Wildcards are supported. 
            When omitted, all build/pipeline folders in the supplied team project are returned.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.Folder.GetBuildDefinitionFolder.QueryOrder">
            <summary>
            Specifies the query order. When omitted, defaults to None.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.Folder.GetBuildDefinitionFolder.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.Folder.GetBuildDefinitionFolder.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.Folder.GetBuildDefinitionFolder.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Pipeline.Build.Folder.NewBuildDefinitionFolder">
            <summary>
            Creates a new build/pipeline definition folder
            </summary>
            <remarks>
            Folders are created recursively - i.e. when specifying a path like '\foo\bar\baz', if any of 
            the parent folders (foo, foo\bar) does not exist, it is automatically created before creating any
            child folders.
            </remarks>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.Folder.NewBuildDefinitionFolder.Folder">
            <summary>
            Specifies the path of the new pipeline/build folder, including its name, 
            separated by backslashes (\).
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.Folder.NewBuildDefinitionFolder.Description">
            <summary>
            Specifies the description of the new build/pipeline folder.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.Folder.NewBuildDefinitionFolder.Passthru">
            <summary>
            HELP_PARAM_PASSTHRU
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.Folder.NewBuildDefinitionFolder.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.Folder.NewBuildDefinitionFolder.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.Folder.NewBuildDefinitionFolder.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Pipeline.Build.Folder.RemoveBuildDefinitionFolder">
            <summary>
            Deletes one or more build/pipeline definition folders.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.Folder.RemoveBuildDefinitionFolder.Folder">
            <summary>
            Specifies the path of the pipeline/build folder to delete, including its name, 
            separated by backslashes (\). Wildcards are supperted.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.Folder.RemoveBuildDefinitionFolder.Recurse">
            <summary>
            Removes folders recursively. When omitted, folders with subfolders cannot be deleted.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.Folder.RemoveBuildDefinitionFolder.Force">
            <summary>
            Forces the exclusion of folders containing build/pipelines definitions. When omitted, 
            only empty folders can be deleted.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.Folder.RemoveBuildDefinitionFolder.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.Folder.RemoveBuildDefinitionFolder.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.Folder.RemoveBuildDefinitionFolder.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Pipeline.Build.StartBuild">
            <summary>
            Gets one or more build/pipeline definitions in a team project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.StartBuild.Definition">
            <summary>
            Specifies the pipeline to start.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.StartBuild.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.StartBuild.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.Build.StartBuild.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Pipeline.ReleaseManagement.GetReleaseDefinition">
            <summary>
            Gets information from one or more release definitions in a team project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.ReleaseManagement.GetReleaseDefinition.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.ReleaseManagement.GetReleaseDefinition.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.ReleaseManagement.GetReleaseDefinition.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Pipeline.ReleaseManagement.GetReleaseDefinitionFolder">
            <summary>
            Gets one or more Release/pipeline definition folders in a team project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.ReleaseManagement.GetReleaseDefinitionFolder.Folder">
            <summary>
            Specifies the folder path. Wildcards are supported. 
            When omitted, all Release/pipeline folders in the supplied team project are returned.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.ReleaseManagement.GetReleaseDefinitionFolder.QueryOrder">
            <summary>
            Specifies the query order. When omitted, defaults to None.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.ReleaseManagement.GetReleaseDefinitionFolder.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.ReleaseManagement.GetReleaseDefinitionFolder.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.ReleaseManagement.GetReleaseDefinitionFolder.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Pipeline.ReleaseManagement.NewReleaseDefinitionFolder">
            <summary>
            Creates a new release definition folder.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.ReleaseManagement.NewReleaseDefinitionFolder.Folder">
            <summary>
            Specifies the folder path. Wildcards are supported. 
            When omitted, all Release/pipeline folders in the supplied team project are returned.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.ReleaseManagement.NewReleaseDefinitionFolder.Description">
            <summary>
            Specifies the description of the new build/pipeline folder.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.ReleaseManagement.NewReleaseDefinitionFolder.Passthru">
            <summary>
            HELP_PARAM_PASSTHRU
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.ReleaseManagement.NewReleaseDefinitionFolder.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.ReleaseManagement.NewReleaseDefinitionFolder.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.ReleaseManagement.NewReleaseDefinitionFolder.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Pipeline.ReleaseManagement.RemoveReleaseDefinitionFolder">
            <summary>
            Deletes one or more release definition folders.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.ReleaseManagement.RemoveReleaseDefinitionFolder.Folder">
            <summary>
            Specifies the path of the release folder to delete. Wildcards are supported.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.ReleaseManagement.RemoveReleaseDefinitionFolder.Recurse">
            <summary>
            Removes folders recursively. When omitted, folders with subfolders cannot be deleted.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.ReleaseManagement.RemoveReleaseDefinitionFolder.Force">
            <summary>
            Forces the exclusion of folders containing release definitions definitions. When omitted, 
            only empty folders can be deleted.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.ReleaseManagement.RemoveReleaseDefinitionFolder.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.ReleaseManagement.RemoveReleaseDefinitionFolder.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Pipeline.ReleaseManagement.RemoveReleaseDefinitionFolder.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.ProcessTemplate.ExportProcessTemplate">
            <summary>
            Exports a XML-based process template definition to disk.
            </summary>
            <remarks>
            This cmdlet offers a functional replacement to the "Export Process Template" feature found 
            in Team Explorer. All files pertaining to the specified process template (work item defininitons, 
            reports, saved queries, process configuration and so on) are downloaded from the given 
            Team Project Collection and saved in a local directory, preserving the directory structure 
            required to later re-import it. This is specially handy to do small changes to a process template 
            or to create a new process template based on an existing one.
            </remarks>
            <example>
              <code>Export-TfsProcessTemplate -Process "Scrum" -DestinationPath C:\PT -Collection http://vsalm:8080/tfs/DefaultCollection</code>
              <para>Exports the Scrum process template from the DefaultCollection project collection in the VSALM server, saving the template files to the C:\PT\Scrum directory in the local computer.</para>
            </example>
            <example>
              <code>Export-TfsProcessTemplate -Process "Scrum" -DestinationPath C:\PT -Collection http://vsalm:8080/tfs/DefaultCollection -NewName "MyScrum" -NewDescription "A customized version of the Scrum process template"</code>
              <para>Exports the Scrum process template from the DefaultCollection project collection in the VSALM server, saving the template files to the C:\PT\MyScrum directory in the local computer. Notice that the process template is being renamed from Scrum to MyScrum, so that it can be later reimported as a new process template instead of overwriting the original one.</para>
            </example>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ProcessTemplate.ExportProcessTemplate.ProcessTemplate">
            <summary>
            Specifies the name of the process template(s) to be exported. Wildcards are supported. 
            When omitted, all process templates in the given project collection are exported.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ProcessTemplate.ExportProcessTemplate.DestinationPath">
            <summary>
            Path to the target directory where the exported process template (and related files) will be saved. 
            A folder with the process template name will be created under this path. When omitted, templates  
            are exported in the current directory.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ProcessTemplate.ExportProcessTemplate.NewName">
            <summary>
            Saves the exported process template with a new name. Useful when exporting a base template 
            which will be used as a basis for a new process template. When omitted, the original name is used.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ProcessTemplate.ExportProcessTemplate.NewDescription">
            <summary>
            Saves the exported process template with a new description. Useful when exporting a base template 
            which will be used as a basis for a new process template.  When omitted, the original description is used.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ProcessTemplate.ExportProcessTemplate.Force">
            <summary>
            Allows the cmdlet to overwrite an existing destination folder.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ProcessTemplate.ExportProcessTemplate.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ProcessTemplate.ExportProcessTemplate.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.ProcessTemplate.GetProcessTemplate">
            <summary>
            Gets information from one or more process templates.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ProcessTemplate.GetProcessTemplate.ProcessTemplate">
            <summary>
            Specifies the name of the process template(s) to be returned. Wildcards are supported. 
            When omitted, all process templates in the given project collection are returned.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ProcessTemplate.GetProcessTemplate.Default">
            <summary>
            Returns the default process template in the given orgnization / project collection.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ProcessTemplate.GetProcessTemplate.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ProcessTemplate.GetProcessTemplate.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.ProcessTemplate.ImportProcessTemplate">
            <summary>
            Imports a process template definition from disk.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ProcessTemplate.ImportProcessTemplate.Path">
            <summary>
            Specifies the folder containing the process template to be imported. This folder must contain 
            the file ProcessTemplate.xml
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ProcessTemplate.ImportProcessTemplate.State">
            <summary>
            Specifies the state of the template after it is imported. When set to Invisible, the process template
            will not be listed in the server UI.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ProcessTemplate.ImportProcessTemplate.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ProcessTemplate.ImportProcessTemplate.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.ProcessTemplate.NewProcessTemplate">
            <summary>
            Creates a new inherited process.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ProcessTemplate.NewProcessTemplate.ProcessTemplate">
            <summary>
            Specifies the name of the process to create.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ProcessTemplate.NewProcessTemplate.Description">
            <summary>
            Specifies the description of the new process.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ProcessTemplate.NewProcessTemplate.ReferenceName">
            <summary>
            Specifies the reference name of the new process. When omitted, a random name 
            will be automatically generated and assigned by the server.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ProcessTemplate.NewProcessTemplate.Parent">
            <summary>
            Specifies the name of the parent process from which the new process will inherit.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ProcessTemplate.NewProcessTemplate.Force">
            <summary>
            Allows the cmdlet to overwrite an existing process.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ProcessTemplate.NewProcessTemplate.Passthru">
            <summary>
            HELP_PARAM_PASSTHRU
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ProcessTemplate.NewProcessTemplate.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ProcessTemplate.NewProcessTemplate.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.RestApi.GetRestClient">
            <summary>
            Gets an Azure DevOps HTTP Client object instance.
            </summary>
            <remarks>
            Connection objects (Microsoft.VisualStudio.Services.Client.VssConnection in PowerShell Core, 
            Microsoft.TeamFoundation.Client.TfsTeamProjectCollection in Windows PowerShell) provide access to 
            many HTTP client objects such as Microsoft.TeamFoundation.WorkItemTracking.WebApi.WorkItemTrackingHttpClient 
            that wrap many of the REST APIs exposed by Azure DevOps. Those clients inherit the authentication 
            information supplied by their parent connection object and can be used as a more convenient mechanism 
            to issue API calls.
            </remarks>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.RestApi.GetRestClient.TypeName">
            <summary>
            Specifies the full type name (optionally including its assembly name) of the HTTP Client 
            class to return.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.RestApi.GetRestClient.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.RestApi.GetRestClient.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.RestApi.InvokeRestApi">
            <summary>
            Invoke an Azure DevOps REST API.
            </summary>
            <remarks>
            Invoke-TfsRestApi can automatically parse an example URL from 
            https://docs.microsoft.com/en-us/rest/api/azure/devops/ and replace its various tokens 
            (such as {organization}, {project} and {team}) as long as collection / project / team 
            information are available via either the their respective arguments in this command or the 
            corresponding Connect-Tfs* cmdlet. HTTP method and API version are also automatically extracted 
            from the supplied example, when available.
            </remarks>
            <example>
              <code>Invoke-TfsRestApi -Method GET -Path /_apis/projects -ApiVersion 4.1 -Collection DefaultCollection</code>
              <para>Calls a REST API that lists all team projects in a TFS collection named DefaultCollection</para>
            </example>
            <example>
              <code>Invoke-TfsRestApi 'GET https://extmgmt.dev.azure.com/{organization}/_apis/extensionmanagement/installedextensions?api-version=5.1-preview.1'</code>
              <para>Calls the API described by an example extracted from the docs.microsoft.com web site. 
                HTTP method, host name and API version are all set based on the supplied values; 
                Tokens {organization}, {project} and {team} are properly replaced with the corresponding 
                values provided by the current connection context (via previous calls to 
                Connect-TfsTeamProjectCollection, Connect-TfsTeamProject and/or Connect-TfsTeam).</para>
            </example>
            <example>
              <code>Invoke-TfsRestApi 'GET https://{instance}/{collection}/_apis/process/processes?api-version=4.1' -Collection http://vsalm:8080/tfs/DefaultCollection</code>
              <para>Calls an API in a TFS instance, parsing the example provided by the docs.microsoft.com web site.</para>
            </example>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.RestApi.InvokeRestApi.Path">
            <summary>
            Specifies the path of the REST API to call. Tipically it is the portion of the URL after 
            the name of the collection/organization, i.e. in the URL 
            https://dev.azure.com/{organization}/_apis/projects?api-version=5.1 the path is 
            "/_apis/projects".
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.RestApi.InvokeRestApi.Method">
            <summary>
            Specifies the HTTP method to call the API endpoint. When omitted, defaults to "GET".
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.RestApi.InvokeRestApi.Body">
            <summary>
            Specifies the request body to send to the API endpoint. Tipically contains the JSON payload 
            required by the API.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.RestApi.InvokeRestApi.RequestContentType">
            <summary>
             Specifies the request body content type to send to the API. When omitted, defaults to
            "application/json".
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.RestApi.InvokeRestApi.ResponseContentType">
            <summary>
             Specifies the response body content type returned by the API. When omitted, defaults to
            "application/json".
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.RestApi.InvokeRestApi.AdditionalHeaders">
            <summary>
            Specifies a hashtable with additional HTTP headers to send to the API endpoint.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.RestApi.InvokeRestApi.QueryParameters">
            <summary>
            Specifies a hashtable with additional query parameters to send to the API endpoint.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.RestApi.InvokeRestApi.ApiVersion">
            <summary>
            Specifies the desired API version. When omitted, defaults to "4.1".
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.RestApi.InvokeRestApi.UseHost">
            <summary>
            Specifies an alternate host name for APIs not hosted in "dev.azure.com", 
            e.g. "vsaex.dev.azure.com" or "vssps.dev.azure.com".
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.RestApi.InvokeRestApi.NoAutoUnwrap">
            <summary>
            Prevents the automatic expansion (unwrapping) of the 'value' property in the response JSON.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.RestApi.InvokeRestApi.Raw">
            <summary>
            Returns the API response as an unparsed string. If omitted, JSON responses will be 
            parsed, converted and returned as objects (via ConvertFrom-Json).
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.RestApi.InvokeRestApi.Destination">
            <summary>
            Saves the API response to a file. If omitted, the response will be written to the stardard output stream.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.RestApi.InvokeRestApi.AsTask">
            <summary>
            Returns the System.Threading.Tasks.Task object used to issue the asynchronous call to the API. 
            The caller is responsible for finishing the asynchronous call by e.g. accessing the Result property.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.RestApi.InvokeRestApi.Team">
            <summary>
            HELP_PARAM_TEAM
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.RestApi.InvokeRestApi.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.RestApi.InvokeRestApi.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.RestApi.InvokeRestApi.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.ServiceHook.GetServiceHookConsumer">
            <summary>
            Gets one or more service hook consumers.
            </summary>
            <remarks>
            Service hook consumers are the services that can consume (receive) notifications triggered by 
            Azure DevOps. Examples of consumers available out-of-box with Azure DevOps are Microsoft Teams, 
            Slack, Trello ou the generic WebHook consumer. Use this cmdlet to list the available consumers and get 
            the ID of the desired one to be able to manage service hook subscriptions.
            </remarks>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ServiceHook.GetServiceHookConsumer.Consumer">
            <summary>
            Specifies the name or ID of the service hook consumer to return. Wildcards are supported. 
            When omitted, all service hook consumers registered in the given project collection/organization 
            are returned.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ServiceHook.GetServiceHookConsumer.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ServiceHook.GetServiceHookConsumer.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.ServiceHook.GetServiceHookNotificationHistory">
            <summary>
            Gets the notification history for a given service hook subscription
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ServiceHook.GetServiceHookNotificationHistory.Subscription">
            <summary>
            Specifies the subscription to get the notification history from.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ServiceHook.GetServiceHookNotificationHistory.From">
            <summary>
            Specifies the beginning of a date interval to filter notifications on.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ServiceHook.GetServiceHookNotificationHistory.To">
            <summary>
            Specifies the end of a date interval to filter notifications on.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ServiceHook.GetServiceHookNotificationHistory.Status">
            <summary>
            Specifies the notification status to filter on.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ServiceHook.GetServiceHookNotificationHistory.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ServiceHook.GetServiceHookNotificationHistory.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.ServiceHook.GetServiceHookPublisher">
            <summary>
            Gets one or more service hook publishers.
            </summary>
            <remarks>
            Service hook publishers are the components inside of Azure DevOps that can publish (send) notifications triggered by 
            event such as "work item changed" or "build queued". Use this cmdlet to list the available publishers and get 
            the ID of the desired one to be able to manage service hook subscriptions.
            </remarks>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ServiceHook.GetServiceHookPublisher.Publisher">
            <summary>
            Specifies the name or ID of the service hook publisher to return. Wildcards are supported. 
            When omitted, returns all service hook consumers currently supported the current by Azure DevOps organization / 
            TFS collection.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ServiceHook.GetServiceHookPublisher.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ServiceHook.GetServiceHookPublisher.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.ServiceHook.GetServiceHookSubscription">
            <summary>
            Gets one or more service hook subscriptions
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ServiceHook.GetServiceHookSubscription.Subscription">
            <summary>
            Specifies the name ("action description") of the subscription. Wildcards are supported. 
            When omitted, returns all service hook subscriptions in the given 
            team project collection.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ServiceHook.GetServiceHookSubscription.Publisher">
            <summary>
            Specifies the name or ID of the service hook publisher to filter subscriptions by.
            When omitted, returns all subscriptions regardless of their publishers.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ServiceHook.GetServiceHookSubscription.Consumer">
            <summary>
            Specifies the name or ID of the service hook consumer to filter subscriptions by. 
            When omitted, returns all subscriptions regardless of their consumers.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ServiceHook.GetServiceHookSubscription.EventType">
            <summary>
            Specifies the event type to filter subscriptions by. 
            When omitted, returns all subscriptions regardless of their event types.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ServiceHook.GetServiceHookSubscription.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.ServiceHook.GetServiceHookSubscription.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Shell.EnterShell">
            <summary>
            Activates the Azure DevOps Shell
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Shell.EnterShell.WindowTitle">
            <summary>
            Specifies the shell window title. If omitted, defaults to "Azure DevOps Shell".
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Shell.EnterShell.DoNotClearHost">
            <summary>
            Do not clear the host screen when activating the Azure DevOps Shell. When set, the
            prompt is enabled without clearing the screen.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Shell.EnterShell.NoLogo">
            <summary>
            Do not show the version banner when activating the Azure DevOps Shell.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Shell.EnterShell.NoProfile">
            <summary>
            Do not load the user profile TfsCmdlets.Profile.ps1 (if present) when activating the Azure DevOps Shell.
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Shell.ExitShell">
            <summary>
            Deactivates the Azure DevOps Shell
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.TeamProjectCollection.ConnectTeamProjectCollection">
            <summary>
            Connects to a TFS team project collection or Azure DevOps organization. 
            </summary>
            <remarks>
            The Connect-TfsTeamProjectCollection cmdlet connects to a TFS Team Project Collection or 
            Azure DevOps organization.
            
            That connection can be later reused by other TfsCmdlets commands until it's closed 
            by a call to Disconnect-TfsTeamProjectCollection.
            </remarks>
            <notes>
            Most cmdlets in the TfsCmdlets module require a Collection object to be provided via their 
            -Collection argument in order to access a TFS instance. Those cmdlets will use the connection 
            opened by Connect-TfsTeamProjectCollection as their "default connection".
            
            In other words, TFS cmdlets (e.g. New-TfsWorkItem) that have a -Collection argument will use the connection 
            provided by Connect-TfsTeamProjectCollection by default.
            </notes>
            <example>
              <code>Connect-TfsTeamProjectCollection -Collection http://tfs:8080/tfs/DefaultCollection</code>
              <para>Connects to a collection called "DefaultCollection" in a TF server called "tfs" 
                    using the cached credentials of the logged-on user</para>
            </example>
            <example>
              <code>Connect-TfsTeamProjectCollection -Collection http://tfs:8080/tfs/DefaultCollection -Interactive</code>
              <para>Connects to a collection called "DefaultCollection" in a Team Foundation server called 
                    "tfs", firstly prompting the user for credentials (it ignores the cached credentials for 
                    the currently logged-in user). It's equivalent to the command: `Connect-TfsTeamProjectCollection 
                    -Collection http://tfs:8080/tfs/DefaultCollection -Credential (Get-TfsCredential -Interactive)`
              </para>
            </example>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProjectCollection.ConnectTeamProjectCollection.Collection">
            <summary>
             Specifies the URL to the Team Project Collection or Azure DevOps Organization to connect to, 
             a TfsTeamProjectCollection object (Windows PowerShell only), or a VssConnection object. 
             You can also connect to an Azure DevOps Services organizations by simply providing its name 
             instead of the full URL. 
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProjectCollection.ConnectTeamProjectCollection.Passthru">
            <summary>
            HELP_PARAM_PASSTHRU
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProjectCollection.ConnectTeamProjectCollection.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProjectCollection.ConnectTeamProjectCollection.Cached">
            <summary>
            HELP_PARAM_CACHED_CREDENTIAL
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProjectCollection.ConnectTeamProjectCollection.UserName">
            <summary>
            HELP_PARAM_USER_NAME
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProjectCollection.ConnectTeamProjectCollection.Password">
            <summary>
            HELP_PARAM_PASSWORD
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProjectCollection.ConnectTeamProjectCollection.Credential">
            <summary>
            HELP_PARAM_CREDENTIAL
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProjectCollection.ConnectTeamProjectCollection.PersonalAccessToken">
            <summary>
            HELP_PARAM_PERSONAL_ACCESS_TOKEN
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProjectCollection.ConnectTeamProjectCollection.Interactive">
            <summary>
            HELP_PARAM_INTERACTIVE
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.TeamProjectCollection.DisconnectTeamProjectCollection">
            <summary>
            Disconnects from the currently connected TFS team project collection or Azure DevOps organization.
            </summary>
            <remarks>
            The Disconnect-TfsTeamProjectCollection cmdlet removes the connection previously set by its 
            counterpart Connect-TfsTeamProjectCollection. Therefore, cmdlets relying on a "default collection" 
            as provided by "Get-TfsTeamProjectCollection -Current" will no longer work after a call to 
            this cmdlet, unless their -Collection argument is provided or a new call to 
            Connect-TfsTeam is made.
            </remarks>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.TeamProjectCollection.GetTeamProjectCollection">
            <summary>
            Gets one of more team project collections (organizations in Azure DevOps).
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProjectCollection.GetTeamProjectCollection.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProjectCollection.GetTeamProjectCollection.Current">
            <summary>
            Returns the team project collection specified in the last call to 
            Connect-TfsTeamProjectCollection (i.e. the "current" project collection)
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProjectCollection.GetTeamProjectCollection.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProjectCollection.GetTeamProjectCollection.Cached">
            <summary>
            HELP_PARAM_CACHED_CREDENTIAL
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProjectCollection.GetTeamProjectCollection.UserName">
            <summary>
            HELP_PARAM_USER_NAME
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProjectCollection.GetTeamProjectCollection.Password">
            <summary>
            HELP_PARAM_PASSWORD
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProjectCollection.GetTeamProjectCollection.Credential">
            <summary>
            HELP_PARAM_CREDENTIAL
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProjectCollection.GetTeamProjectCollection.PersonalAccessToken">
            <summary>
            HELP_PARAM_PERSONAL_ACCESS_TOKEN
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProjectCollection.GetTeamProjectCollection.Interactive">
            <summary>
            HELP_PARAM_INTERACTIVE
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.TeamProjectCollection.NewTeamProjectCollection">
            <summary>
            Creates a new team project collection.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProjectCollection.NewTeamProjectCollection.Passthru">
            <summary>
            HELP_PARAM_PASSTHRU
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProjectCollection.NewTeamProjectCollection.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.TeamProjectCollection.RemoveTeamProjectCollection">
            <summary>
            Deletes a team project collection.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProjectCollection.RemoveTeamProjectCollection.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.TeamProject.Avatar.ExportTeamProjectAvatar">
            <summary>
            Exports the current avatar (image) of the specified team project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.Avatar.ExportTeamProjectAvatar.Path">
            <summary>
            Specifies the path of the file where the avatar image will be saved. 
            When omitted, the image will be saved to the current directory as &lt;team-project-name&gt;.png.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.Avatar.ExportTeamProjectAvatar.Force">
            <summary>
            HELP_PARAM_FORCE_OVERWRITE
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.Avatar.ExportTeamProjectAvatar.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.Avatar.ExportTeamProjectAvatar.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.Avatar.ExportTeamProjectAvatar.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.TeamProject.Avatar.ImportTeamProjectAvatar">
            <summary>
            Imports and sets a new team project avatar (image).
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.Avatar.ImportTeamProjectAvatar.Path">
            <summary>
            Specifies the path of the image file to import. 
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.Avatar.ImportTeamProjectAvatar.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.Avatar.ImportTeamProjectAvatar.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.Avatar.ImportTeamProjectAvatar.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.TeamProject.Avatar.RemoveTeamProjectAvatar">
            <summary>
            Removes the team project avatar, resetting it to the default.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.Avatar.RemoveTeamProjectAvatar.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.Avatar.RemoveTeamProjectAvatar.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.Avatar.RemoveTeamProjectAvatar.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.TeamProject.ConnectTeamProject">
            <summary>
            Connects to a Team Project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.ConnectTeamProject.Project">
            <summary>
            Specifies the name of the Team Project, its ID (a GUID), or a 
            Microsoft.TeamFoundation.Core.WebApi.TeamProject object to connect to.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.ConnectTeamProject.Passthru">
            <summary>
            HELP_PARAM_PASSTHRU
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.ConnectTeamProject.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.ConnectTeamProject.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.ConnectTeamProject.Cached">
            <summary>
            HELP_PARAM_CACHED_CREDENTIAL
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.ConnectTeamProject.UserName">
            <summary>
            HELP_PARAM_USER_NAME
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.ConnectTeamProject.Password">
            <summary>
            HELP_PARAM_PASSWORD
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.ConnectTeamProject.Credential">
            <summary>
            HELP_PARAM_CREDENTIAL
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.ConnectTeamProject.PersonalAccessToken">
            <summary>
            HELP_PARAM_PERSONAL_ACCESS_TOKEN
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.ConnectTeamProject.Interactive">
            <summary>
            HELP_PARAM_INTERACTIVE
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.TeamProject.DisconnectTeamProject">
            <summary>
            Disconnects from the currently connected team project.
            </summary>
            <remarks>
            The Disconnect-TfsTeamProject cmdlet removes the connection previously set by its 
            counterpart Connect-TfsTeamProject. Therefore, cmdlets relying on a "default team project" 
            as provided by "Get-TfsTeamProject -Current" will no longer work after a call to 
            this cmdlet, unless their -Project argument is provided or a new call to 
            Connect-TfsTeamProject is made.
            </remarks>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.TeamProject.GetTeamProject">
            <summary>
            Gets information about one or more team projects.
            </summary>
            <remarks>
            The Get-TfsTeamProject cmdlets gets one or more Team Project objects 
            (an instance of Microsoft.TeamFoundation.Core.WebApi.TeamProject) from the supplied 
            Team Project Collection.
            </remarks>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.GetTeamProject.Project">
            <summary>
            Specifies the name of a Team Project. Wildcards are supported. 
            When omitted, all team projects in the supplied collection are returned.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.GetTeamProject.Deleted">
            <summary>
            Lists deleted team projects present in the "recycle bin"
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.GetTeamProject.Process">
            <summary>
            Returns only those team projects matching the specified process template(s).
            Wildcards are supported. When omitted returns all team projects, regardless of process template.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.GetTeamProject.IncludeDetails">
            <summary>
            Includes details about the team projects, such as the process template name and other properties.
            Specifying this argument signficantly increases the time it takes to complete the operation.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.GetTeamProject.Current">
            <summary>
            Returns the team project specified in the last call to Connect-TfsTeamProject 
            (i.e. the "current" team project)
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.GetTeamProject.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.GetTeamProject.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.GetTeamProject.Cached">
            <summary>
            HELP_PARAM_CACHED_CREDENTIAL
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.GetTeamProject.UserName">
            <summary>
            HELP_PARAM_USER_NAME
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.GetTeamProject.Password">
            <summary>
            HELP_PARAM_PASSWORD
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.GetTeamProject.Credential">
            <summary>
            HELP_PARAM_CREDENTIAL
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.GetTeamProject.PersonalAccessToken">
            <summary>
            HELP_PARAM_PERSONAL_ACCESS_TOKEN
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.GetTeamProject.Interactive">
            <summary>
            HELP_PARAM_INTERACTIVE
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.TeamProject.Member.GetTeamProjectMember">
            <summary>
            Gets the members of a team project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.Member.GetTeamProjectMember.Member">
            <summary>
            Specifies the name of a team project member. Wildcards are supported. 
            When omitted, all team project members are returned.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.Member.GetTeamProjectMember.AsIdentity">
            <summary>
            Returns the members as fully resolved <see cref="T:Microsoft.VisualStudio.Services.Identity.Identity"/> objects.
            When omitted, it returns only the name, ID and email of the users.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.Member.GetTeamProjectMember.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.Member.GetTeamProjectMember.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.Member.GetTeamProjectMember.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.TeamProject.NewTeamProject">
            <summary>
            Creates a new team project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.NewTeamProject.Project">
            <summary>
             Specifies the name of the new team project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.NewTeamProject.Description">
            <summary>
            Specifies a description for the new team project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.NewTeamProject.SourceControl">
            <summary>
            Specifies the source control type to be provisioned initially with the team project. 
            Supported types are "Git" and "Tfvc".
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.NewTeamProject.ProcessTemplate">
            <summary>
            Specifies the process template on which the new team project is based. 
            Supported values are the process name or an instance of the
            Microsoft.TeamFoundation.Core.WebApi.Process class.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.NewTeamProject.Passthru">
            <summary>
            HELP_PARAM_PASSTHRU
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.NewTeamProject.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.NewTeamProject.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.TeamProject.RemoveTeamProject">
            <summary>
            Deletes one or more team projects. 
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.RemoveTeamProject.Project">
            <summary>
            Specifies the name of a Team Project to delete. Wildcards are supported.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.RemoveTeamProject.Hard">
            <summary>
            Deletes the team project permanently. When omitted, the team project is moved to a 
            "recycle bin" and can be recovered either via UI or by using Undo-TfsTeamProjectRemoval.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.RemoveTeamProject.Force">
            <summary>
            HELP_PARAM_FORCE_REMOVE
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.RemoveTeamProject.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.RemoveTeamProject.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.TeamProject.RenameTeamProject">
            <summary>
            Renames a team project. 
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.RenameTeamProject.Project">
            <summary>
            Specifies the name of a Team Project to rename.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.RenameTeamProject.Force">
            <summary>
            Forces the renaming of the team project. When omitted, the command prompts for 
            confirmation prior to renaming the team project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.RenameTeamProject.NewName">
            <summary>
            HELP_PARAM_NEWNAME
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.RenameTeamProject.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.RenameTeamProject.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.TeamProject.SetTeamProject">
            <summary>
            Changes the details of a team project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.SetTeamProject.Project">
            <summary>
            Specifies the name of the Team Project. 
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.SetTeamProject.Description">
            <summary>
            Specifies the description of the team project.
            To remove a previously set description, pass a blank string ('') to this argument.
            </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 either $null or a blank string ('') to this argument.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.SetTeamProject.Passthru">
            <summary>
            HELP_PARAM_PASSTHRU
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.SetTeamProject.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.SetTeamProject.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.TeamProject.UndoTeamProjectRemoval">
            <summary>
            Undeletes one or more team projects. 
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.UndoTeamProjectRemoval.Project">
            <summary>
            Specifies the name of the Team Project to undelete.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.UndoTeamProjectRemoval.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TeamProject.UndoTeamProjectRemoval.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Team.Backlog.GetTeamBacklogLevel">
            <summary>
            Gets information about one or more backlog levels of a given team.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.Backlog.GetTeamBacklogLevel.Backlog">
            <summary>
            Specifies one or more backlog level configurations to be returned. Valid values 
            are the name (e.g. "Stories") or the ID (e.g. "Microsoft.RequirementCategory") of the 
            backlog level to return. Wilcards are supported. When omitted, returns all backlogs 
            levels of the given team.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.Backlog.GetTeamBacklogLevel.Team">
            <summary>
            HELP_PARAM_TEAM
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.Backlog.GetTeamBacklogLevel.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.Backlog.GetTeamBacklogLevel.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.Backlog.GetTeamBacklogLevel.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Team.Board.GetTeamBoard">
            <summary>
            Gets one or more team boards.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.Board.GetTeamBoard.Board">
            <summary>
            Specifies the board name. Wildcards are supported. When omitted, returns all boards in 
            the given team.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.Board.GetTeamBoard.Team">
            <summary>
            HELP_PARAM_TEAM
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.Board.GetTeamBoard.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.Board.GetTeamBoard.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.Board.GetTeamBoard.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Team.Board.GetTeamBoardCardRule">
            <summary>
            Gets one or more team board card rules.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.Board.GetTeamBoardCardRule.Rule">
            <summary>
            Specifies the rule name. Wildcards are supported. 
            When omitted, returns all card rules in the given board.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.Board.GetTeamBoardCardRule.RuleType">
            <summary>
            Specifies the kind of rule to return. When omitted, returns 
            both rule types (card color and tag color).
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.Board.GetTeamBoardCardRule.Board">
            <summary>
            Specifies the board name.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.Board.GetTeamBoardCardRule.Team">
            <summary>
            HELP_PARAM_TEAM
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.Board.GetTeamBoardCardRule.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.Board.GetTeamBoardCardRule.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.Board.GetTeamBoardCardRule.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Team.Board.SetTeamBoardCardRule">
            <summary>
            Set the card rule settings of the specified backlog board.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.Board.SetTeamBoardCardRule.WebApiBoard">
            <summary>
            Specifies the board name. Wildcards are supported. When omitted, returns card rules 
            for all boards in the given team.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.Board.SetTeamBoardCardRule.Passthru">
            <summary>
            HELP_PARAM_PASSTHRU
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.Board.SetTeamBoardCardRule.Team">
            <summary>
            HELP_PARAM_TEAM
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.Board.SetTeamBoardCardRule.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.Board.SetTeamBoardCardRule.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.Board.SetTeamBoardCardRule.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Team.ConnectTeam">
            <summary>
            Connects to a team.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.ConnectTeam.Team">
            <summary>
              Specifies the name of the Team, its ID (a GUID), or a 
              Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object to connect to. For more details, 
              see the Get-TfsTeam cmdlet.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.ConnectTeam.Passthru">
            <summary>
            HELP_PARAM_PASSTHRU
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.ConnectTeam.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.ConnectTeam.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.ConnectTeam.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.ConnectTeam.Cached">
            <summary>
            HELP_PARAM_CACHED_CREDENTIAL
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.ConnectTeam.UserName">
            <summary>
            HELP_PARAM_USER_NAME
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.ConnectTeam.Password">
            <summary>
            HELP_PARAM_PASSWORD
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.ConnectTeam.Credential">
            <summary>
            HELP_PARAM_CREDENTIAL
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.ConnectTeam.PersonalAccessToken">
            <summary>
            HELP_PARAM_PERSONAL_ACCESS_TOKEN
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.ConnectTeam.Interactive">
            <summary>
            HELP_PARAM_INTERACTIVE
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Team.DisconnectTeam">
            <summary>
            Disconnects from the currently connected team.
            </summary>
            <remarks>
            The Disconnect-TfsTeam cmdlet removes the connection previously set by its 
            counterpart Connect-TfsTeam. Therefore, cmdlets relying on a "default team" 
            as provided by "Get-TfsTeam -Current" will no longer work after a call to 
            this cmdlet, unless their -Team argument is provided or a new call to 
            Connect-TfsTeam is made.
            </remarks>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Team.GetTeam">
            <summary>
            Gets information about one or more teams.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.GetTeam.Team">
            <summary>
            Specifies the team to return. Accepted values are its name, its ID, or a
            Microsoft.TeamFoundation.Core.WebApi.WebApiTeam object. Wildcards are supported.
            When omitted, all teams in the given team project are returned.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.GetTeam.IncludeMembers">
            <summary>
            Get team members (fills the Members property with a list of
            Microsoft.VisualStudio.Services.WebApi.TeamMember objects).
            When omitted, only basic team information (such as name, description and ID) are returned.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.GetTeam.IncludeSettings">
            <summary>
            Gets team settings (fills the Settings, TeamField, and IterationPaths properties).
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.GetTeam.Current">
            <summary>
            Returns the team specified in the last call to Connect-TfsTeam (i.e. the "current" team)
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.GetTeam.Default">
            <summary>
            Returns the default team in the given team project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.GetTeam.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.GetTeam.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.GetTeam.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.GetTeam.Cached">
            <summary>
            HELP_PARAM_CACHED_CREDENTIAL
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.GetTeam.UserName">
            <summary>
            HELP_PARAM_USER_NAME
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.GetTeam.Password">
            <summary>
            HELP_PARAM_PASSWORD
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.GetTeam.Credential">
            <summary>
            HELP_PARAM_CREDENTIAL
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.GetTeam.PersonalAccessToken">
            <summary>
            HELP_PARAM_PERSONAL_ACCESS_TOKEN
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.GetTeam.Interactive">
            <summary>
            HELP_PARAM_INTERACTIVE
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Team.NewTeam">
            <summary>
            Creates a new team.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.NewTeam.Team">
            <summary>
            Specifies the name of the new team.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.NewTeam.DefaultAreaPath">
            <summary>
            Specifies the team's default area path (or "team field"). The default area path is assigned
            automatically to all work items created in a team's backlog and/or board. When omitted,
            an area path may still be associated to this team depending on whether NoAutomaticAreaPath
            is set
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.NewTeam.NoDefaultArea">
            <summary>
            Do not associate an area path automatically to the new team. When omitted, an area path 
            is created (if needed) and then is set as the default area path / team field
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.NewTeam.AreaPaths">
            <summary>
            Specifies the backlog area path(s) that are associated with this team. Wildcards are supported. 
            When the path ends with an asterisk, all child area paths will be included recursively. 
            Otherwise, only the area itself (without its children) will be included.
            To include the children of the default area path, use the wildcard character (*) without a path.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.NewTeam.BacklogIteration">
            <summary>
            Specifies the team's backlog iteration path. When omitted, defaults to the team project's root iteration.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.NewTeam.DefaultIterationMacro">
            <summary>
            Specifies the default iteration macro. When omitted, defaults to "@CurrentIteration".
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.NewTeam.IterationPaths">
            <summary>
            Specifies the backlog iteration path(s) that are associated with this team. 
            Wildcards are supported. 
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.NewTeam.NoBacklogIteration">
            <summary>
            Do not associate an iteration path automatically to the new team. When omitted, 
            an iteration path is created (if needed) and then is set as the default 
            backlog iteration
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.NewTeam.Description">
            <summary>
            Specifies a description of the new team.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.NewTeam.Passthru">
            <summary>
            HELP_PARAM_PASSTHRU
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.NewTeam.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.NewTeam.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.NewTeam.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Team.RemoveTeam">
            <summary>
            Deletes a team.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.RemoveTeam.Team">
            <summary>
            HELP_PARAM_TEAM
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.RemoveTeam.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.RemoveTeam.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.RemoveTeam.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Team.RenameTeam">
            <summary>
            Renames a team.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.RenameTeam.Team">
            <summary>
            HELP_PARAM_TEAM
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.RenameTeam.NewName">
            <summary>
            HELP_PARAM_NEWNAME
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.RenameTeam.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.RenameTeam.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.RenameTeam.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Team.SetTeam">
            <summary>
            Changes the details of a team.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.SetTeam.Team">
            <summary>
            HELP_PARAM_TEAM
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.SetTeam.Default">
            <summary>
            Sets the specified team as the default team.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.SetTeam.Description">
            <summary>
            Specifies a new description
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.SetTeam.DefaultAreaPath">
            <summary>
            Specifies the team's default area path (or "team field"). The default area path is assigned
            automatically to all work items created in a team's backlog and/or board.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.SetTeam.AreaPaths">
            <summary>
            Specifies the backlog area path(s) that are associated with this team. Wildcards are supported. 
            When the path ends with an asterisk, all child area paths will be included recursively. 
            Otherwise, only the area itself (without its children) will be included.
            To include the children of the default area path, use the wildcard character (*) without a path.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.SetTeam.OverwriteAreaPaths">
            <summary>
            Replaces the existing area paths with the specified list of area paths. 
            When omitted, the new area paths are added alongside the previously defined ones.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.SetTeam.BacklogIteration">
            <summary>
            Specifies the team's backlog iteration path. When omitted, defaults to the team project's root iteration.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.SetTeam.DefaultIterationMacro">
            <summary>
            Specifies the default iteration macro. 
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.SetTeam.IterationPaths">
            <summary>
            Specifies the backlog iteration path(s) that are associated with this team. 
            Wildcards are supported. 
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.SetTeam.OverwriteIterationPaths">
            <summary>
            Replaces the existing iteration paths with the specified list of iteration paths. 
            When omitted, the new iteration paths are added alongside the previously defined ones.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.SetTeam.WorkingDays">
            <summary>
             Specifies the team's Working Days.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.SetTeam.BugsBehavior">
            <summary>
            Specifies how bugs should behave when added to a board.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.SetTeam.BacklogVisibilities">
            <summary>
            Specifies which backlog levels (e.g. Epics, Features, Stories) should be visible.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.SetTeam.Force">
            <summary>
            Allows the cmdlet to create target area and/or iteration nodes if they're missing.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.SetTeam.Passthru">
            <summary>
            HELP_PARAM_PASSTHRU
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.SetTeam.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.SetTeam.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.SetTeam.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Team.TeamAdmin.AddTeamAdmin">
            <summary>
            Adds a new administrator to a team.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.TeamAdmin.AddTeamAdmin.Admin">
            <summary>
            Specifies the administrator to add to the given team.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.TeamAdmin.AddTeamAdmin.Team">
            <summary>
            HELP_PARAM_TEAM
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.TeamAdmin.AddTeamAdmin.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.TeamAdmin.AddTeamAdmin.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.TeamAdmin.AddTeamAdmin.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Team.TeamAdmin.GetTeamAdmin">
            <summary>
            Gets the administrators of a team.
            </summary>    
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.TeamAdmin.GetTeamAdmin.Admin">
            <summary>
            Specifies the administrator to get from the given team. Wildcards are supported.
            When omitted, all administrators are returned.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.TeamAdmin.GetTeamAdmin.Team">
            <summary>
            HELP_PARAM_TEAM
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.TeamAdmin.GetTeamAdmin.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.TeamAdmin.GetTeamAdmin.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.TeamAdmin.GetTeamAdmin.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Team.TeamAdmin.RemoveTeamAdmin">
            <summary>
            Removes an administrator from a team.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.TeamAdmin.RemoveTeamAdmin.Admin">
            <summary>
            Specifies the administrator to remove from the team.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.TeamAdmin.RemoveTeamAdmin.Team">
            <summary>
            HELP_PARAM_TEAM
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.TeamAdmin.RemoveTeamAdmin.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.TeamAdmin.RemoveTeamAdmin.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.TeamAdmin.RemoveTeamAdmin.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Team.TeamMember.AddTeamMember">
            <summary>
            Adds new members to a team.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.TeamMember.AddTeamMember.Member">
            <summary>
            Specifies the member (user or group) to add to the given team.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.TeamMember.AddTeamMember.Team">
            <summary>
            HELP_PARAM_TEAM
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.TeamMember.AddTeamMember.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.TeamMember.AddTeamMember.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.TeamMember.AddTeamMember.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Team.TeamMember.GetTeamMember">
            <summary>
            Gets the members of a team.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.TeamMember.GetTeamMember.Member">
            <summary>
            Specifies the member (user or group) to get from the given team. Wildcards are supported.
            When omitted, all team members are returned.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.TeamMember.GetTeamMember.Recurse">
            <summary>
            Recursively expands all member groups, returning the users and/or groups contained in them
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.TeamMember.GetTeamMember.Team">
            <summary>
            HELP_PARAM_TEAM
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.TeamMember.GetTeamMember.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.TeamMember.GetTeamMember.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.TeamMember.GetTeamMember.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Team.TeamMember.RemoveTeamMember">
            <summary>
            Removes a member from a team.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.TeamMember.RemoveTeamMember.Member">
            <summary>
            Specifies the member (user or group) to remove from the given team.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.TeamMember.RemoveTeamMember.Team">
            <summary>
            HELP_PARAM_TEAM
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.TeamMember.RemoveTeamMember.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.TeamMember.RemoveTeamMember.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Team.TeamMember.RemoveTeamMember.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.TestManagement.CopyTestPlan">
            <summary>
            Clone a test plan and, optionally, its test suites and test cases.
            </summary>
            <remarks>
              <para>The Copy-TfsTestPlan copies ("clones") a test plan to help duplicate test suites and/or test cases. Cloning is useful if you want to branch your application into two versions. After copying, the tests for the two versions can be changed without affecting each other.</para>
              <para>When you clone a test suite, the following objects are copied from the source test plan to the destination test plan:</para>
              <para>  * Test cases (note: Each new test case retains its shared steps. A link is made between the source and new test cases. The new test cases do not have test runs, bugs, test results, and build information);</para>
              <para>  * Shared steps referenced by cloned test cases;</para>
              <para>  * Test suites (note: The following data is retained - Names and hierarchical structure of the test suites; Order of the test cases; Assigned testers; Configurations);</para>
              <para>  * Action Recordings linked from a cloned test case;</para>
              <para>  * Links and Attachments;</para>
              <para>  * Test configuration.</para>
              <para>The items below are only copied when using -CloneRequirements:</para>
              <para>  * Requirements-based suites;</para>
              <para>  * Requirements work items (product backlog items or user stories);</para>
              <para>  * Bug work items, when in a project that uses the Scrum process template or any other project in which the Bug work item type is in the Requirements work item category. In other projects, bugs are not cloned.</para>
            </remarks>
            <example>
            <code>Copy-TfsTestPlan -TestPlan "My test plan" -Project "SourceProject" -Destination "TargetProject" -NewName "My new test plan"</code>
            </example>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TestManagement.CopyTestPlan.TestPlan">
            <summary>
            Specifies the name of the test plan to clone.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TestManagement.CopyTestPlan.NewName">
            <summary>
            Specifies the name of the new test plan.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TestManagement.CopyTestPlan.Destination">
            <summary>
            Specifies the name of the team project where the test plan will be cloned into. 
            When omitted, the test plan is cloned into the same team project of the original 
            test plan.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TestManagement.CopyTestPlan.AreaPath">
            <summary>
            Specifies the area path where the test plan will be cloned into. 
            When omitted, the test plan is cloned into the same area path of the original 
            test plan.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TestManagement.CopyTestPlan.IterationPath">
            <summary>
            Specifies the iteration path where the test plan will be cloned into. 
            When omitted, the test plan is cloned into the same iteration path of 
            the original test plan.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TestManagement.CopyTestPlan.DeepClone">
            <summary>
            Clones all the referenced test cases. When omitted, only the test plan is 
            cloned; the original test cases are only referenced in the new plan, not duplicated.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TestManagement.CopyTestPlan.Recurse">
            <summary>
            Clone all test suites recursively.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TestManagement.CopyTestPlan.CopyAncestorHierarchy">
            <summary>
            Copies ancestor hierarchy.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TestManagement.CopyTestPlan.CloneRequirements">
            <summary>
            Clones requirements referenced by the test plan.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TestManagement.CopyTestPlan.DestinationWorkItemType">
            <summary>
            Specifies the name of the workitem type of the clone.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TestManagement.CopyTestPlan.SuiteIds">
            <summary>
            Clones only the specified suites.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TestManagement.CopyTestPlan.RelatedLinkComment">
            <summary>
            Specifies the comment of the Related link that is created ato point 
            to the original test plan.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TestManagement.CopyTestPlan.Passthru">
            <summary>
            HELP_PARAM_PASSTHRU
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TestManagement.CopyTestPlan.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TestManagement.CopyTestPlan.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TestManagement.CopyTestPlan.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.TestManagement.GetTestPlan">
            <summary>
            Gets the contents of one or more test plans.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TestManagement.GetTestPlan.TestPlan">
            <summary>
            Specifies the test plan name. Wildcards are supported. When omitted, returns all test cases in the given team project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TestManagement.GetTestPlan.Owner">
            <summary>
            Gets only the plans owned by the specified user.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TestManagement.GetTestPlan.NoPlanDetails">
            <summary>
            Get only basic properties of the test plan.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TestManagement.GetTestPlan.Active">
            <summary>
            Get only the active plans.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TestManagement.GetTestPlan.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TestManagement.GetTestPlan.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TestManagement.GetTestPlan.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.TestManagement.NewTestPlan">
            <summary>
            Creates a new test plan.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TestManagement.NewTestPlan.TestPlan">
            <summary>
            Specifies the test plan name.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TestManagement.NewTestPlan.AreaPath">
            <summary>
            Specifies the owner of the new test plan.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TestManagement.NewTestPlan.IterationPath">
            <summary>
            Specifies the owner of the new test plan.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TestManagement.NewTestPlan.StartDate">
            <summary>
            Specifies the start date of the test plan.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TestManagement.NewTestPlan.EndDate">
            <summary>
            Specifies the end date of the test plan.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TestManagement.NewTestPlan.Owner">
            <summary>
            Specifies the owner of the new test plan.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TestManagement.NewTestPlan.Passthru">
            <summary>
            HELP_PARAM_PASSTHRU
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TestManagement.NewTestPlan.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TestManagement.NewTestPlan.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TestManagement.NewTestPlan.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.TestManagement.RemoveTestPlan">
            <summary>
            Deletes one or more test plans.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TestManagement.RemoveTestPlan.TestPlan">
            <summary>
            Specifies one or more test plans to delete. Wildcards are supported.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TestManagement.RemoveTestPlan.Force">
            <summary>
            Forces the deletion of test plans with test suites and/or test cases. 
            When omitted, only empty test plans can be deleted.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TestManagement.RemoveTestPlan.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TestManagement.RemoveTestPlan.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TestManagement.RemoveTestPlan.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.TestManagement.RenameTestPlan">
            <summary>
            Renames a test plans.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TestManagement.RenameTestPlan.TestPlan">
            <summary>
            Specifies the test plan name.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TestManagement.RenameTestPlan.NewName">
            <summary>
            HELP_PARAM_NEWNAME
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TestManagement.RenameTestPlan.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TestManagement.RenameTestPlan.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.TestManagement.RenameTestPlan.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Wiki.GetWiki">
            <summary>
            Gets information from one or more Wiki repositories in a team project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Wiki.GetWiki.Wiki">
            <summary>
            Specifies the name or ID of a Wiki repository. Wildcards are supported. 
            When omitted, all Wiki repositories in the supplied team project are returned.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Wiki.GetWiki.ProjectWiki">
            <summary>
            Returns only provisioned ("project") Wikis. When omitted, returns all Wikis 
            (both Project wikis and Code wikis).
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Wiki.GetWiki.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Wiki.GetWiki.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Wiki.GetWiki.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Wiki.NewWiki">
            <summary>
            Creates a new Wiki repository in a team project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Wiki.NewWiki.Wiki">
            <summary>
            Specifies the name of the new Wiki
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Wiki.NewWiki.Repository">
            <summary>
            Specifies the name or ID of the Git repository to publish as a Wiki
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Wiki.NewWiki.Branch">
            <summary>
            Specifies the name or ID of the source branch to publish as a Wiki. When ommited, the default branch is used.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Wiki.NewWiki.Path">
            <summary>
            Specifies the path to the folder in the repository to publish as a Wiki. When ommited, defaults to the root folder.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Wiki.NewWiki.ProjectWiki">
            <summary>
            Creates a provisioned ("project") Wiki in the specified Team Project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Wiki.NewWiki.Passthru">
            <summary>
            HELP_PARAM_PASSTHRU
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Wiki.NewWiki.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Wiki.NewWiki.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Wiki.NewWiki.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.Wiki.RemoveWiki">
            <summary>
            Deletes one or more Git repositories from a team project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Wiki.RemoveWiki.Wiki">
            <summary>
            Specifies the Wiki to be deleted.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Wiki.RemoveWiki.ProjectWiki">
            <summary>
            Deletes the provisioned ("project") Wiki of the specified Team Project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Wiki.RemoveWiki.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Wiki.RemoveWiki.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.Wiki.RemoveWiki.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.CopyArea">
            <summary>
            Copies one or more Work Item Areas recursively
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.CopyArea.Node">
            <summary>
            HELP_PARAM_AREA
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.CopyArea.Destination">
            <summary>
            Specifies the name and/or path of the destination parent node.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.CopyArea.DestinationProject">
            <summary>
            Specifies the name and/or path of the destination team project. 
            When omitted, copies the area to the same team project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.CopyArea.Force">
            <summary>
            Allows the cmdlet to create destination parent node(s) if they're missing.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.CopyArea.Recurse">
            <summary>
            Copies nodes recursively. When omitted, sub-nodes are not copied.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.CopyArea.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.CopyArea.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.CopyArea.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.CopyIteration">
            <summary>
            Copies one or more Iterations recursively
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.CopyIteration.Node">
            <summary>
            HELP_PARAM_ITERATION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.CopyIteration.Destination">
            <summary>
            Specifies the name and/or path of the destination parent node.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.CopyIteration.DestinationProject">
            <summary>
            Specifies the name and/or path of the destination team project. 
            When omitted, copies the iteration to the same team project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.CopyIteration.Force">
            <summary>
            Allows the cmdlet to create destination parent node(s) if they're missing.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.CopyIteration.Recurse">
            <summary>
            Copies nodes recursively. When omitted, sub-nodes are not copied.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.CopyIteration.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.CopyIteration.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.CopyIteration.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.GetArea">
            <summary>
            Gets one or more Work Item Areas from a given Team Project.
            </summary>
            <example>
              <code>Get-TfsArea</code>
              <para>Returns all area paths in the currently connected Team Project (as defined by a previous call to Connect-TfsTeamProject)</para>
            </example>
            <example>
              <code>Get-TfsArea '\**\Support' -Project Tailspin</code>
              <para>Performs a recursive search and returns all area paths named 'Support' that may exist in a team project called Tailspin</para>
            </example>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.GetArea.Node">
            <summary>
            HELP_PARAM_AREA
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.GetArea.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.GetArea.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.GetArea.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.GetIteration">
            <summary>
            Gets one or more Iterations from a given Team Project.
            </summary>
            <example>
              <code>Get-TfsIteration</code>
              <para>Returns all iterations in the currently connected Team Project (as defined by a previous call to Connect-TfsTeamProject)</para>
            </example>
            <example>
              <code>Get-TfsIteration '\**\Support' -Project Tailspin</code>
              <para>Performs a recursive search and returns all iterations named 'Support' that may exist in a team project called Tailspin</para>
            </example>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.GetIteration.Node">
            <summary>
            HELP_PARAM_ITERATION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.GetIteration.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.GetIteration.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.GetIteration.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.MoveArea">
            <summary>
            Moves one or more Work Item Areas to a new parent node
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.MoveArea.Node">
            <summary>
            HELP_PARAM_AREA
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.MoveArea.Destination">
            <summary>
            Specifies the name and/or path of the destination parent node.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.MoveArea.Force">
            <summary>
            Allows the cmdlet to create destination parent node(s) if they're missing.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.MoveArea.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.MoveArea.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.MoveArea.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.MoveIteration">
            <summary>
            Moves one or more Iterations to a new parent node
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.MoveIteration.Node">
            <summary>
            HELP_PARAM_ITERATION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.MoveIteration.Destination">
            <summary>
            Specifies the name and/or path of the destination parent node.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.MoveIteration.Force">
            <summary>
            Allows the cmdlet to create destination parent node(s) if they're missing.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.MoveIteration.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.MoveIteration.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.MoveIteration.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.NewArea">
            <summary>
            Creates a new Work Item Area in the given Team Project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.NewArea.Node">
            <summary>
            Specifies the path of the new Area. When supplying a path, use a backslash ("\\") 
            between the path segments. Leading and trailing backslashes are optional. 
            The last segment in the path will be the area name.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.NewArea.Force">
            <summary>
            Allows the cmdlet to create parent nodes if they're missing.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.NewArea.Passthru">
            <summary>
            HELP_PARAM_PASSTHRU
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.NewArea.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.NewArea.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.NewArea.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.NewIteration">
            <summary>
            Creates a new Iteration in the given Team Project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.NewIteration.Node">
            <summary>
            Specifies the path of the new Iteration. When supplying a path, use a backslash ("\\") 
            between the path segments. Leading and trailing backslashes are optional. 
            The last segment in the path will be the iteration name.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.NewIteration.StartDate">
            <summary>
            Specifies the start date of the iteration.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.NewIteration.FinishDate">
            <summary>
            Sets the finish date of the iteration. 
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.NewIteration.Force">
            <summary>
            Allows the cmdlet to create parent nodes if they're missing.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.NewIteration.Passthru">
            <summary>
            HELP_PARAM_PASSTHRU
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.NewIteration.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.NewIteration.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.NewIteration.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RemoveArea">
            <summary>
            Deletes one or more Work Item Areas from a given Team Project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RemoveArea.Node">
            <summary>
            HELP_PARAM_AREA
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RemoveArea.MoveTo">
            <summary>
            Specifies the new parent node for the work items currently assigned to the node 
            being deleted, if any. When omitted, defaults to the root node (the "\" node, at the
            team project level).
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RemoveArea.Recurse">
            <summary>
            Removes node(s) recursively.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RemoveArea.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RemoveArea.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RemoveArea.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RemoveIteration">
            <summary>
            Deletes one or more iterations from a given Team Project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RemoveIteration.Node">
            <summary>
            HELP_PARAM_ITERATION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RemoveIteration.MoveTo">
            <summary>
            Specifies the new parent node for the work items currently assigned to the node 
            being deleted, if any. When omitted, defaults to the root node (the "\" node, at the
            team project level).
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RemoveIteration.Recurse">
            <summary>
            Removes node(s) recursively.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RemoveIteration.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RemoveIteration.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RemoveIteration.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RenameArea">
            <summary>
            Renames an area path.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RenameArea.Node">
            <summary>
            HELP_PARAM_AREA
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RenameArea.NewName">
            <summary>
            HELP_PARAM_NEWNAME
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RenameArea.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RenameArea.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RenameArea.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RenameIteration">
            <summary>
            Renames an iteration path.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RenameIteration.Node">
            <summary>
            HELP_PARAM_ITERATION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RenameIteration.NewName">
            <summary>
            HELP_PARAM_NEWNAME
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RenameIteration.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RenameIteration.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.RenameIteration.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.SetIteration">
            <summary>
            Modifies the dates of an iteration.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.SetIteration.Node">
            <summary>
            HELP_PARAM_ITERATION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.SetIteration.StartDate">
            <summary>
            Specifies the start date of the iteration. To clear the start date, set it to $null. Note that when clearing a date, 
            both must be cleared at the same time (i.e. setting both StartDate and FinishDate to $null).
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.SetIteration.FinishDate">
            <summary>
            Sets the finish date of the iteration. To clear the finish date, set it to $null. Note that when clearing a date, 
            both must be cleared at the same time (i.e. setting both StartDate and FinishDate to $null).
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.SetIteration.Length">
            <summary>
            Sets the length (in days) of the iteration. To clear the finish date, set it to 0. Note that when clearing a date, 
            both must be cleared at the same time (i.e. setting both StartDate to $null and Length to 0).
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.SetIteration.Passthru">
            <summary>
            HELP_PARAM_PASSTHRU
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.SetIteration.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.SetIteration.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.SetIteration.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.TestArea">
            <summary>
            Determines whether the specified Work Area exist.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.TestArea.Node">
            <summary>
            HELP_PARAM_AREA
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.TestArea.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.TestArea.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.TestArea.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.TestIteration">
            <summary>
            Determines whether the specified iteration exist.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.TestIteration.Node">
            <summary>
            HELP_PARAM_AREA
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.TestIteration.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.TestIteration.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.AreasIterations.TestIteration.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem">
            <summary>
            Gets the contents of one or more work items.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem.WorkItem">
            <summary>
            HELP_PARAM_WORKITEM
            </summary>
            <seealso cref="T:Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItem">
            A WorkItem object
            </seealso>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem.Title">
            <summary>
            Specifies the title to look up for in a work item. Wildcards are supported. 
            When a wildcard is used, matches a portion of the title 
            (uses the operator "contains" in the WIQL query). Otherwise, matches the whole field 
            with the operator "=", unless -Ever is also specified. In that case, uses the operator 
            "was ever".
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem.Description">
            <summary>
            Specifies the description to look up for in a work item. Wildcards are supported. 
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem.AreaPath">
            <summary>
            Specifies the area path to look up for in a work item. Wildcards are supported. 
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem.IterationPath">
            <summary>
            Specifies the iteration path to look up for in a work item. Wildcards are supported. 
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem.WorkItemType">
            <summary>
            Specifies the work item type to look up for in a work item. Wildcards are supported. 
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem.State">
            <summary>
            Specifies the state (field 'System.State') to look up for in a work item. Wildcards are supported. 
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem.Reason">
            <summary>
            Specifies the reason (field 'System.Reason') to look up for in a work item. 
            Wildcards are supported. 
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem.ValueArea">
            <summary>
            Specifies the Value Area (field 'Microsoft.VSTS.Common.ValueArea') to look up for in a work item. 
            Wildcards are supported. 
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem.BoardColumn">
            <summary>
            Specifies the board column to look up for in a work item. 
            Wildcards are supported. 
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem.BoardColumnDone">
            <summary>
            Specifies whether the work item is in the sub-column Doing or Done in a board.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem.CreatedBy">
            <summary>
            Specifies the name or email of the user that created the work item.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem.CreatedDate">
            <summary>
             Specifies the date when the work item was created.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem.ChangedBy">
            <summary>
            Specifies the name or email of the user that did the latest change to the work item.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem.ChangedDate">
            <summary>
            Specifies the date of the latest change to the work item.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem.StateChangeDate">
            <summary>
            Specifies the date of the most recent change to the state of the work item.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem.Priority">
            <summary>
            Specifies the priority of the work item.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem.Tags">
            <summary>
            Specifies the tags to look up for in a work item. When multiple tags are supplied, 
            they are combined with an OR operator - in other works, returns  work items that 
            contain ANY ofthe supplied tags.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem.Ever">
            <summary>
            Switches the query to historical query mode, by changing operators to 
            "WAS EVER" where possible.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem.Revision">
            <summary>B
            Specifies a work item revision number to retrieve. When omitted, returns
            the latest revision of the work item.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem.AsOf">
            <summary>
            Returns the field values as they were defined in the work item revision that
            was the latest revision by the date specified.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem.Wiql">
            <summary>
            Specifies a query written in WIQL (Work Item Query Language)
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem.SavedQuery">
            <summary>
            Specifies the path of a saved query to be executed. 
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem.QueryParameters">
            <summary>
            Specifies the path of a saved query to be executed. 
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem.Fields">
            <summary>
            Specifies which fields should be retrieved. When omitted, defaults to a set of
            standard fields that include Id, Title, Description, some state-related fields and more. 
            To retrive all fields, pass an asterisk ('*') to this argument.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem.Where">
            <summary>
            Specifies a filter clause (the portion of a WIQL query after the WHERE keyword).
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem.TimePrecision">
            <summary>
            Fetches work items in "time-precision mode": search criteria in WIQL queries 
            take into account time information as well, not only dates.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem.ShowWindow">
            <summary>
            Opens the specified work item in the default web browser.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem.Deleted">
            <summary>
            Gets deleted work items.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem.IncludeLinks">
            <summary>
            Gets information about all links and attachments in the work item. When omitted, only fields are retrieved.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem.Team">
            <summary>
            HELP_PARAM_TEAM
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.GetWorkItem.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.History.GetWorkItemHistory">
            <summary>
            Gets the history of changes of a work item.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.History.GetWorkItemHistory.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.History.GetWorkItemHistory.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.Linking.AddWorkItemLink">
            <summary>
            Adds a link between two work items.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Linking.AddWorkItemLink.Passthru">
            <summary>
            HELP_PARAM_PASSTHRU
            </summary>
            <value></value>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Linking.AddWorkItemLink.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Linking.AddWorkItemLink.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.Linking.ExportWorkItemAttachment">
            <summary>
            Downloads one or more attachments from work items
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Linking.ExportWorkItemAttachment.Attachment">
            <summary>
            Specifies the attachment to download. Wildcards are supported. 
            When omitted, all attachments in the specified work item are downloaded.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Linking.ExportWorkItemAttachment.WorkItem">
            <summary>
            HELP_PARAM_WORKITEM
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Linking.ExportWorkItemAttachment.Destination">
            <summary>
            Specifies the directory to save the attachment to. When omitted, defaults to the current directory.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Linking.ExportWorkItemAttachment.Force">
            <summary>
            Allows the cmdlet to overwrite an existing file.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Linking.ExportWorkItemAttachment.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Linking.ExportWorkItemAttachment.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.Linking.GetWorkItemLink">
            <summary>
            Gets the links in a work item.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Linking.GetWorkItemLink.WorkItem">
            <summary>
            HELP_PARAM_WORKITEM
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Linking.GetWorkItemLink.LinkType">
            <summary>
            Returns only the specified link types. When omitted, returns all link types.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Linking.GetWorkItemLink.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Linking.GetWorkItemLink.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.Linking.GetWorkItemLinkType">
            <summary>
            Gets the work item link end types of a team project collection.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Linking.GetWorkItemLinkType.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Linking.GetWorkItemLinkType.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.MoveWorkItem">
            <summary>
            Moves a work item to a different team project in the same collection.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.MoveWorkItem.WorkItem">
            <summary>
            Specifies a work item. Valid values are the work item ID or an instance of
            Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItem.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.MoveWorkItem.Project">
            <summary>
            Specifies the team project where the work item will be moved to.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.MoveWorkItem.Area">
            <summary>
            Specifies the area path in the destination project where the work item will be moved to. 
            When omitted, the work item is moved to the root area path in the destination project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.MoveWorkItem.Iteration">
            <summary>
            Specifies the iteration path in the destination project where the work item will be moved to. 
            When omitted, the work item is moved to the root iteration path in the destination project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.MoveWorkItem.State">
            <summary>
            Specifies a new state for the work item in the destination project. 
            When omitted, it retains the current state.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.MoveWorkItem.Comment">
            <summary>
            Specifies a comment to be added to the history
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.MoveWorkItem.Passthru">
            <summary>
            HELP_PARAM_PASSTHRU
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.MoveWorkItem.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.MoveWorkItem.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.NewWorkItem">
            <summary>
            Creates a new work item.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.NewWorkItem.Type">
            <summary>
            Specifies the type of the new work item.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.NewWorkItem.Title">
            <summary>
            Specifies the title of the work item.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.NewWorkItem.Description">
            <summary>
            Specifies the description of the work item.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.NewWorkItem.AreaPath">
            <summary>
            Specifies the area path of the work item.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.NewWorkItem.IterationPath">
            <summary>
            Specifies the iteration path of the work item.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.NewWorkItem.AssignedTo">
            <summary>
            Specifies the user this work item is assigned to.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.NewWorkItem.State">
            <summary>
            Specifies the state of the work item.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.NewWorkItem.Reason">
            <summary>
            Specifies the reason (field 'System.Reason') of the work item. 
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.NewWorkItem.ValueArea">
            <summary>
            Specifies the Value Area of the work item. 
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.NewWorkItem.BoardColumn">
            <summary>
            Specifies the board column of the work item. 
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.NewWorkItem.BoardColumnDone">
            <summary>
            Specifies whether the work item is in the sub-column Doing or Done in a board.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.NewWorkItem.BoardLane">
            <summary>
            Specifies the board lane of the work item
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.NewWorkItem.Priority">
            <summary>
            Specifies the priority of the work item.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.NewWorkItem.Tags">
            <summary>
            Specifies the tags of the work item.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.NewWorkItem.Fields">
            <summary>
            Specifies the names and the corresponding values for the fields to be set 
            in the work item and whose values were not supplied in the other arguments 
            to this cmdlet.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.NewWorkItem.BypassRules">
            <summary>
            Bypasses any rule validation when saving the work item. Use it with caution, as this 
            may leave the work item in an invalid state.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.NewWorkItem.Passthru">
            <summary>
            HELP_PARAM_PASSTHRU
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.NewWorkItem.Team">
            <summary>
            HELP_PARAM_TEAM
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.NewWorkItem.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.NewWorkItem.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.NewWorkItem.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.Query.ExportWorkItemQuery">
            <summary>
            Exports a saved work item query to XML.
            </summary>
            <remarks>
            Work item queries can be exported to XML files (.WIQ extension) in order to be shared 
            and reused. Visual Studio Team Explorer has the ability to open and save WIQ files. Use 
            this cmdlet to generate WIQ files compatible with the format supported by Team Explorer.
            </remarks>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.ExportWorkItemQuery.Query">
            <summary>
            Specifies one or more saved queries to export. Wildcards supported. 
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.ExportWorkItemQuery.Scope">
            <summary>
            Specifies the scope of the returned item. Personal refers to the 
            "My Queries" folder", whereas Shared refers to the "Shared Queries" 
            folder. When omitted defaults to "Both", effectively searching for items 
            in both scopes.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.ExportWorkItemQuery.Destination">
            <summary>
            Specifies the path to the folder where exported queries are saved.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.ExportWorkItemQuery.Encoding">
            <summary>
            Specifies the encoding for the exported XML files. When omitted, 
            defaults to UTF-8.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.ExportWorkItemQuery.FlattenFolders">
            <summary>
            Flattens the query folder structure. When omitted, the original query 
            folder structure is recreated in the destination folder.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.ExportWorkItemQuery.Force">
            <summary>
            HELP_PARAM_FORCE_OVERWRITE
            </summary>
            <value></value>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.ExportWorkItemQuery.AsXml">
            <summary>
            Exports the saved query to the standard output stream as a string-encoded 
            XML document.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.ExportWorkItemQuery.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.ExportWorkItemQuery.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.ExportWorkItemQuery.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.Query.Folder.GetWorkItemQueryFolder">
            <summary>
            Gets the definition of one or more work item saved queries.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.Folder.GetWorkItemQueryFolder.Folder">
            <summary>
            Specifies one or more saved queries to return. Wildcards supported. 
            When omitted, returns all saved queries in the given scope of the given team project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.Folder.GetWorkItemQueryFolder.Scope">
            <summary>
            Specifies the scope of the returned item. Personal refers to the 
            "My Queries" folder", whereas Shared refers to the "Shared Queries" 
            folder. When omitted defaults to "Both", effectively searching for items 
            in both scopes.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.Folder.GetWorkItemQueryFolder.Deleted">
            <summary>
            Returns deleted items.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.Folder.GetWorkItemQueryFolder.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.Folder.GetWorkItemQueryFolder.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.Folder.GetWorkItemQueryFolder.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.Query.Folder.NewWorkItemQueryFolder">
            <summary>
            Create a new work items query in the given Team Project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.Folder.NewWorkItemQueryFolder.Folder">
            <summary>
            Specifies one or more saved queries to return. Wildcards supported. 
            When omitted, returns all saved queries in the given scope of the given team project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.Folder.NewWorkItemQueryFolder.Scope">
            <summary>
            Specifies the scope of the returned item. Personal refers to the 
            "My Queries" folder, whereas Shared refers to the "Shared Queries" 
            folder. When omitted defaults to "Both", effectively searching for items 
            in both scopes.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.Folder.NewWorkItemQueryFolder.Passthru">
            <summary>
            HELP_PARAM_PASSTHRU
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.Folder.NewWorkItemQueryFolder.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.Folder.NewWorkItemQueryFolder.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.Folder.NewWorkItemQueryFolder.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.Query.UndoWorkItemQueryFolderRemoval">
            <summary>
            Restores a deleted work item query folder.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.UndoWorkItemQueryFolderRemoval.Folder">
            <summary>
            Specifies one or more query folders to restore. Wildcards supported. 
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.UndoWorkItemQueryFolderRemoval.Scope">
            <summary>
            Specifies the scope of the item to restore. 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.UndoWorkItemQueryFolderRemoval.Recursive">
            <summary>
            Restores the specified query folder and all its descendants. 
            When omitted, the specified folder is restored but not its contents (queries and/or sub-folders).
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.UndoWorkItemQueryFolderRemoval.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.UndoWorkItemQueryFolderRemoval.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.UndoWorkItemQueryFolderRemoval.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.Query.GetWorkItemQuery">
            <summary>
            Gets the definition of one or more work item saved queries.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.GetWorkItemQuery.Query">
            <summary>
            Specifies one or more saved queries to return. Wildcards supported. 
            When omitted, returns all saved queries in the given scope of the given team project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.GetWorkItemQuery.Scope">
            <summary>
            Specifies the scope of the returned item. Personal refers to the 
            "My Queries" folder", whereas Shared refers to the "Shared Queries" 
            folder. When omitted defaults to "Both", effectively searching for items 
            in both scopes.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.GetWorkItemQuery.Deleted">
            <summary>
            Returns only deleted items.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.GetWorkItemQuery.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.GetWorkItemQuery.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.GetWorkItemQuery.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.Query.NewWorkItemQuery">
            <summary>
            Create a new work items query in the given Team Project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.NewWorkItemQuery.Query">
            <summary>
            Specifies one or more saved queries to return. Wildcards supported. 
            When omitted, returns all saved queries in the given scope of the given team project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.NewWorkItemQuery.Scope">
            <summary>
            Specifies the scope of the returned item. Personal refers to the 
            "My Queries" folder", whereas Shared refers to the "Shared Queries" 
            folder. When omitted defaults to "Both", effectively searching for items 
            in both scopes.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.NewWorkItemQuery.Wiql">
            <summary>
            Specifies the query definition text in WIQL (Work Item Query Language).
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.NewWorkItemQuery.Passthru">
            <summary>
            HELP_PARAM_PASSTHRU
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.NewWorkItemQuery.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.NewWorkItemQuery.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.NewWorkItemQuery.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.Query.UndoWorkItemQueryRemoval">
            <summary>
            Restores a deleted work item query.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.UndoWorkItemQueryRemoval.Query">
            <summary>
            Specifies one or more saved queries to restore. Wildcards supported. 
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.UndoWorkItemQueryRemoval.Scope">
            <summary>
            Specifies the scope of the item to restore. 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.UndoWorkItemQueryRemoval.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.UndoWorkItemQueryRemoval.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Query.UndoWorkItemQueryRemoval.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.RemoveWorkItem">
            <summary>
            Deletes a work item from a team project collection.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.RemoveWorkItem.WorkItem">
            <summary>
            Specifies the work item to remove.
            </summary>
            <seealso cref="T:Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItem">
            A WorkItem object
            </seealso>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.RemoveWorkItem.Destroy">
            <summary>
            Permanently deletes the work item, without sending it to the recycle bin.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.RemoveWorkItem.Force">
            <summary>
            HELP_PARAM_FORCE_REMOVE
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.RemoveWorkItem.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.RemoveWorkItem.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.SearchWorkItem">
            <summary>
            Gets the contents of one or more work items.
            </summary>
            <related>https://docs.microsoft.com/en-us/azure/devops/project/search/advanced-work-item-search-syntax</related>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.SearchWorkItem.Query">
            <summary>
            Specifies the text to search for. Supports the Quick Filter syntax described in 
            https://docs.microsoft.com/en-us/azure/devops/project/search/advanced-work-item-search-syntax
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.SearchWorkItem.Results">
            <summary>
            Specifies the maximum quantity of results. Supports between 1 and 1000 results. 
            When omitted, defaults to 100. Currently this cmdlet does not support result pagination.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.SearchWorkItem.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.SearchWorkItem.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.SearchWorkItem.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.SetWorkItem">
            <summary>
            Sets the contents of one or more work items.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.SetWorkItem.WorkItem">
            <summary>
            Specifies a work item. Valid values are the work item ID or an instance of
            Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItem.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.SetWorkItem.Title">
            <summary>
            Specifies the title of the work item.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.SetWorkItem.Description">
            <summary>
            Specifies the description of the work item.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.SetWorkItem.AreaPath">
            <summary>
            Specifies the area path of the work item.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.SetWorkItem.IterationPath">
            <summary>
            Specifies the iteration path of the work item.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.SetWorkItem.AssignedTo">
            <summary>
            Specifies the user this work item is assigned to.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.SetWorkItem.State">
            <summary>
            Specifies the state of the work item.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.SetWorkItem.Reason">
            <summary>
            Specifies the reason (field 'System.Reason') of the work item. 
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.SetWorkItem.ValueArea">
            <summary>
            Specifies the Value Area of the work item. 
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.SetWorkItem.BoardColumn">
            <summary>
            Specifies the board column of the work item. 
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.SetWorkItem.BoardColumnDone">
            <summary>
            Specifies whether the work item is in the sub-column Doing or Done in a board.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.SetWorkItem.BoardLane">
            <summary>
            Specifies the board lane of the work item
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.SetWorkItem.Priority">
            <summary>
            Specifies the priority of the work item.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.SetWorkItem.Tags">
            <summary>
            Specifies the tags of the work item.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.SetWorkItem.Fields">
            <summary>
            Specifies the names and the corresponding values for the fields to be set 
            in the work item and whose values were not supplied in the other arguments 
            to this cmdlet.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.SetWorkItem.BypassRules">
            <summary>
            Bypasses any rule validation when saving the work item. Use it with caution, as this 
            may leave the work item in an invalid state.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.SetWorkItem.Passthru">
            <summary>
            HELP_PARAM_PASSTHRU
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.SetWorkItem.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.SetWorkItem.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.SetWorkItem.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.Tagging.DisableWorkItemTag">
            <summary>
            Disables (deactivates) a work item tag.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Tagging.DisableWorkItemTag.Tag">
            <summary>
            Specifies the tag to disable. Wildcards are supported.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Tagging.DisableWorkItemTag.Passthru">
            <summary>
            HELP_PARAM_PASSTHRU
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Tagging.DisableWorkItemTag.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Tagging.DisableWorkItemTag.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Tagging.DisableWorkItemTag.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.Tagging.EnableWorkItemTag">
            <summary>
            Enables (activates) a work item tag.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Tagging.EnableWorkItemTag.Tag">
            <summary>
            Specifies the tag to enable. Wildcards are supported.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Tagging.EnableWorkItemTag.Passthru">
            <summary>
            HELP_PARAM_PASSTHRU
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Tagging.EnableWorkItemTag.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Tagging.EnableWorkItemTag.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Tagging.EnableWorkItemTag.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.Tagging.GetWorkItemTag">
            <summary>
            Gets one or more work item tags.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Tagging.GetWorkItemTag.Tag">
            <summary>
            Specifies one or more tags to returns. Wildcards are supported. 
            When omitted, returns all existing tags in the given project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Tagging.GetWorkItemTag.IncludeInactive">
            <summary>
            Includes tags not associated to any work items.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Tagging.GetWorkItemTag.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Tagging.GetWorkItemTag.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Tagging.GetWorkItemTag.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.Tagging.NewWorkItemTag">
            <summary>
            Creates a new work item tag.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Tagging.NewWorkItemTag.Tag">
            <summary>
            Specifies the name of the new tag.
            </summary>
            <value></value>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Tagging.NewWorkItemTag.Passthru">
            <summary>
            HELP_PARAM_PASSTHRU
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Tagging.NewWorkItemTag.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Tagging.NewWorkItemTag.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Tagging.NewWorkItemTag.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.Tagging.RemoveWorkItemTag">
            <summary>
            Deletes one or more work item tags.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Tagging.RemoveWorkItemTag.Tag">
            <summary>
            Specifies one or more tags to delete. Wildcards are supported.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Tagging.RemoveWorkItemTag.Force">
            <summary>
            HELP_PARAM_FORCE_REMOVE
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Tagging.RemoveWorkItemTag.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Tagging.RemoveWorkItemTag.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Tagging.RemoveWorkItemTag.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.Tagging.RenameWorkItemTag">
            <summary>
            Renames a work item tag.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Tagging.RenameWorkItemTag.Tag">
            <summary>
            Specifies the name of the work item tag to rename.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Tagging.RenameWorkItemTag.NewName">
            <summary>
            HELP_PARAM_NEWNAME
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Tagging.RenameWorkItemTag.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Tagging.RenameWorkItemTag.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.Tagging.RenameWorkItemTag.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.UndoWorkItemRemoval">
            <summary>
            Restores a deleted work item.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.UndoWorkItemRemoval.WorkItem">
            <summary>
            Specifies the ID of the work item to be restored. Can also receive the output of `Get-WorkItem -Deleted`.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.UndoWorkItemRemoval.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.UndoWorkItemRemoval.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.WorkItemType.ExportWorkItemType">
            <summary>
            Exports an XML work item type definition from a team project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.WorkItemType.ExportWorkItemType.Type">
            <summary>
            Specifies one or more work item types to export. Wildcards are supported. 
            When omitted, all work item types in the given project are exported
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.WorkItemType.ExportWorkItemType.IncludeGlobalLists">
            <summary>
            Exports the definitions of referenced global lists. 
            When omitted, global list definitions are not included in the exported XML document.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.WorkItemType.ExportWorkItemType.Destination">
            <summary>
            Specifies the path to the folder where exported types are saved.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.WorkItemType.ExportWorkItemType.Encoding">
            <summary>
            Specifies the encoding for the exported XML files. When omitted, 
            defaults to UTF-8.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.WorkItemType.ExportWorkItemType.Force">
            <summary>
            HELP_PARAM_FORCE_OVERWRITE
            </summary>
            <value></value>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.WorkItemType.ExportWorkItemType.AsXml">
            <summary>
            Exports the saved query to the standard output stream as a string-encoded 
            XML document.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.WorkItemType.ExportWorkItemType.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.WorkItemType.ExportWorkItemType.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.WorkItemType.ExportWorkItemType.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.WorkItemType.GetWorkItemType">
            <summary>
            Gets one or more Work Item Type definitions from a team project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.WorkItemType.GetWorkItemType.Type">
            <summary>
            Specifies one or more work item type names to return. Wildcards are supported. 
            When omitted, returns all work item types in the given team project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.WorkItemType.GetWorkItemType.WorkItem">
            <summary>
            Speficies a work item whose corresponding type should be returned.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.WorkItemType.GetWorkItemType.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.WorkItemType.GetWorkItemType.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.WorkItemType.GetWorkItemType.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Cmdlets.WorkItem.WorkItemType.ImportWorkItemType">
            <summary>
            Imports a work item type definition into a team project.
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.WorkItemType.ImportWorkItemType.Project">
            <summary>
            HELP_PARAM_PROJECT
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.WorkItemType.ImportWorkItemType.Collection">
            <summary>
            HELP_PARAM_COLLECTION
            </summary>
        </member>
        <member name="P:TfsCmdlets.Cmdlets.WorkItem.WorkItemType.ImportWorkItemType.Server">
            <summary>
            HELP_PARAM_SERVER
            </summary>
        </member>
        <member name="T:TfsCmdlets.Controllers.Pipeline.Build.Definition.ResumeBuildDefinitionController">
            <summary>
            Gets one or more build/pipeline definitions in a team project.
            </summary>
        </member>
        <member name="T:TfsCmdlets.Controllers.Pipeline.Build.Definition.SuspendBuildDefinitionController">
            <summary>
            Gets one or more build/pipeline definitions in a team project.
            </summary>
        </member>
        <member name="T:TfsCmdlets.Controllers.Pipeline.ReleaseManagement.GetReleaseDefinitionController">
            <summary>
            Gets information from one or more release definitions in a team project.
            </summary>
        </member>
        <member name="T:TfsCmdlets.Controllers.Pipeline.ReleaseManagement.GetReleaseDefinitionFolderController">
            <summary>
            Gets one or more Release/pipeline definition folders in a team project.
            </summary>
        </member>
        <member name="T:TfsCmdlets.Controllers.Pipeline.ReleaseManagement.RemoveReleaseDefinitionFolderController">
            <summary>
            Deletes one or more release definition folders.
            </summary>
        </member>
        <member name="T:TfsCmdlets.Controllers.ProcessTemplate.GetProcessTemplateController">
            <summary>
            Gets information from one or more process templates.
            </summary>
        </member>
        <member name="T:TfsCmdlets.Controllers.WorkItem.Linking.AddWorkItemLinkController">
            <summary>
            Adds a link between two work items.
            </summary>
        </member>
        <member name="T:TfsCmdlets.Controllers.WorkItem.Linking.GetWorkItemLinkTypeController">
            <summary>
            Gets the work item link end types of a team project collection.
            </summary>
        </member>
        <member name="T:TfsCmdlets.Controllers.WorkItem.Tagging.GetWorkItemTagController">
            <summary>
            Gets one or more work item tags.
            </summary>
        </member>
        <member name="T:TfsCmdlets.Controllers.WorkItem.Tagging.NewWorkItemTagController">
            <summary>
            Gets one or more work item tags.
            </summary>
        </member>
        <member name="T:TfsCmdlets.Controllers.WorkItem.Tagging.RemoveWorkItemTagController">
            <summary>
            Gets one or more work item tags.
            </summary>
        </member>
        <member name="T:TfsCmdlets.Controllers.WorkItem.Tagging.RenameWorkItemTagController">
            <summary>
            Gets one or more work item tags.
            </summary>
        </member>
        <member name="T:TfsCmdlets.Controllers.WorkItem.WorkItemType.GetWorkItemTypeController">
            <summary>
            Exports an XML work item type definition from a team project.
            </summary>
        </member>
        <member name="T:TfsCmdlets.ModuleInitializer">
            <summary>
            PowerShell module initializer
            </summary>
        </member>
        <member name="M:TfsCmdlets.ModuleInitializer.System#Management#Automation#IModuleAssemblyInitializer#OnImport">
            <summary>
            Method called automatically by PowerShell upon module load/start
            </summary>
        </member>
        <member name="T:JetBrains.Annotations.CanBeNullAttribute">
            <summary>
            Indicates that the value of the marked element could be <c>null</c> sometimes,
            so checking for <c>null</c> is required before its usage.
            </summary>
            <example><code>
            [CanBeNull] object Test() => null;
            
            void UseTest() {
              var p = Test();
              var s = p.ToString(); // Warning: Possible 'System.NullReferenceException'
            }
            </code></example>
        </member>
        <member name="T:JetBrains.Annotations.NotNullAttribute">
            <summary>
            Indicates that the value of the marked element can never be <c>null</c>.
            </summary>
            <example><code>
            [NotNull] object Foo() {
              return null; // Warning: Possible 'null' assignment
            }
            </code></example>
        </member>
        <member name="T:JetBrains.Annotations.ItemNotNullAttribute">
            <summary>
            Can be applied to symbols of types derived from IEnumerable as well as to symbols of Task
            and Lazy classes to indicate that the value of a collection item, of the Task.Result property
            or of the Lazy.Value property can never be null.
            </summary>
            <example><code>
            public void Foo([ItemNotNull]List&lt;string&gt; books)
            {
              foreach (var book in books) {
                if (book != null) // Warning: Expression is always true
                 Console.WriteLine(book.ToUpper());
              }
            }
            </code></example>
        </member>
        <member name="T:JetBrains.Annotations.ItemCanBeNullAttribute">
            <summary>
            Can be applied to symbols of types derived from IEnumerable as well as to symbols of Task
            and Lazy classes to indicate that the value of a collection item, of the Task.Result property
            or of the Lazy.Value property can be null.
            </summary>
            <example><code>
            public void Foo([ItemCanBeNull]List&lt;string&gt; books)
            {
              foreach (var book in books)
              {
                // Warning: Possible 'System.NullReferenceException'
                Console.WriteLine(book.ToUpper());
              }
            }
            </code></example>
        </member>
        <member name="T:JetBrains.Annotations.StringFormatMethodAttribute">
            <summary>
            Indicates that the marked method builds string by the format pattern and (optional) arguments.
            The parameter, which contains the format string, should be given in the constructor. The format string
            should be in <see cref="M:System.String.Format(System.IFormatProvider,System.String,System.Object[])"/>-like form.
            </summary>
            <example><code>
            [StringFormatMethod("message")]
            void ShowError(string message, params object[] args) { /* do something */ }
            
            void Foo() {
              ShowError("Failed: {0}"); // Warning: Non-existing argument in format string
            }
            </code></example>
        </member>
        <member name="M:JetBrains.Annotations.StringFormatMethodAttribute.#ctor(System.String)">
            <param name="formatParameterName">
            Specifies which parameter of an annotated method should be treated as the format string
            </param>
        </member>
        <member name="T:JetBrains.Annotations.StructuredMessageTemplateAttribute">
            <summary>
            Indicates that the marked parameter is a message template where placeholders are to be replaced by the following arguments
            in the order in which they appear
            </summary>
            <example><code>
            void LogInfo([StructuredMessageTemplate]string message, params object[] args) { /* do something */ }
            
            void Foo() {
              LogInfo("User created: {username}"); // Warning: Non-existing argument in format string
            }
            </code></example>
        </member>
        <member name="T:JetBrains.Annotations.ValueProviderAttribute">
             <summary>
             Use this annotation to specify a type that contains static or const fields
             with values for the annotated property/field/parameter.
             The specified type will be used to improve completion suggestions.
             </summary>
             <example><code>
             namespace TestNamespace
             {
               public class Constants
               {
                 public static int INT_CONST = 1;
                 public const string STRING_CONST = "1";
               }
            
               public class Class1
               {
                 [ValueProvider("TestNamespace.Constants")] public int myField;
                 public void Foo([ValueProvider("TestNamespace.Constants")] string str) { }
            
                 public void Test()
                 {
                   Foo(/*try completion here*/);//
                   myField = /*try completion here*/
                 }
               }
             }
             </code></example>
        </member>
        <member name="T:JetBrains.Annotations.ValueRangeAttribute">
            <summary>
            Indicates that the integral value falls into the specified interval.
            It's allowed to specify multiple non-intersecting intervals.
            Values of interval boundaries are inclusive.
            </summary>
            <example><code>
            void Foo([ValueRange(0, 100)] int value) {
              if (value == -1) { // Warning: Expression is always 'false'
                ...
              }
            }
            </code></example>
        </member>
        <member name="T:JetBrains.Annotations.NonNegativeValueAttribute">
            <summary>
            Indicates that the integral value never falls below zero.
            </summary>
            <example><code>
            void Foo([NonNegativeValue] int value) {
              if (value == -1) { // Warning: Expression is always 'false'
                ...
              }
            }
            </code></example>
        </member>
        <member name="T:JetBrains.Annotations.InvokerParameterNameAttribute">
            <summary>
            Indicates that the function argument should be a string literal and match one
            of the parameters of the caller function. For example, ReSharper annotates
            the parameter of <see cref="T:System.ArgumentNullException"/>.
            </summary>
            <example><code>
            void Foo(string param) {
              if (param == null)
                throw new ArgumentNullException("par"); // Warning: Cannot resolve symbol
            }
            </code></example>
        </member>
        <member name="T:JetBrains.Annotations.NotifyPropertyChangedInvocatorAttribute">
             <summary>
             Indicates that the method is contained in a type that implements
             <c>System.ComponentModel.INotifyPropertyChanged</c> interface and this method
             is used to notify that some property value changed.
             </summary>
             <remarks>
             The method should be non-static and conform to one of the supported signatures:
             <list>
             <item><c>NotifyChanged(string)</c></item>
             <item><c>NotifyChanged(params string[])</c></item>
             <item><c>NotifyChanged{T}(Expression{Func{T}})</c></item>
             <item><c>NotifyChanged{T,U}(Expression{Func{T,U}})</c></item>
             <item><c>SetProperty{T}(ref T, T, string)</c></item>
             </list>
             </remarks>
             <example><code>
             public class Foo : INotifyPropertyChanged {
               public event PropertyChangedEventHandler PropertyChanged;
             
               [NotifyPropertyChangedInvocator]
               protected virtual void NotifyChanged(string propertyName) { ... }
            
               string _name;
             
               public string Name {
                 get { return _name; }
                 set { _name = value; NotifyChanged("LastName"); /* Warning */ }
               }
             }
             </code>
             Examples of generated notifications:
             <list>
             <item><c>NotifyChanged("Property")</c></item>
             <item><c>NotifyChanged(() =&gt; Property)</c></item>
             <item><c>NotifyChanged((VM x) =&gt; x.Property)</c></item>
             <item><c>SetProperty(ref myField, value, "Property")</c></item>
             </list>
             </example>
        </member>
        <member name="T:JetBrains.Annotations.ContractAnnotationAttribute">
            <summary>
            Describes dependency between method input and output.
            </summary>
            <syntax>
            <p>Function Definition Table syntax:</p>
            <list>
            <item>FDT      ::= FDTRow [;FDTRow]*</item>
            <item>FDTRow   ::= Input =&gt; Output | Output &lt;= Input</item>
            <item>Input    ::= ParameterName: Value [, Input]*</item>
            <item>Output   ::= [ParameterName: Value]* {halt|stop|void|nothing|Value}</item>
            <item>Value    ::= true | false | null | notnull | canbenull</item>
            </list>
            If the method has a single input parameter, its name could be omitted.<br/>
            Using <c>halt</c> (or <c>void</c>/<c>nothing</c>, which is the same) for the method output
            means that the method doesn't return normally (throws or terminates the process).<br/>
            Value <c>canbenull</c> is only applicable for output parameters.<br/>
            You can use multiple <c>[ContractAnnotation]</c> for each FDT row, or use single attribute
            with rows separated by the semicolon. There is no notion of order rows, all rows are checked
            for applicability and applied per each program state tracked by the analysis engine.<br/>
            </syntax>
            <examples><list>
            <item><code>
            [ContractAnnotation("=&gt; halt")]
            public void TerminationMethod()
            </code></item>
            <item><code>
            [ContractAnnotation("null &lt;= param:null")] // reverse condition syntax
            public string GetName(string surname)
            </code></item>
            <item><code>
            [ContractAnnotation("s:null =&gt; true")]
            public bool IsNullOrEmpty(string s) // string.IsNullOrEmpty()
            </code></item>
            <item><code>
            // A method that returns null if the parameter is null,
            // and not null if the parameter is not null
            [ContractAnnotation("null =&gt; null; notnull =&gt; notnull")]
            public object Transform(object data)
            </code></item>
            <item><code>
            [ContractAnnotation("=&gt; true, result: notnull; =&gt; false, result: null")]
            public bool TryParse(string s, out Person result)
            </code></item>
            </list></examples>
        </member>
        <member name="T:JetBrains.Annotations.LocalizationRequiredAttribute">
            <summary>
            Indicates whether the marked element should be localized.
            </summary>
            <example><code>
            [LocalizationRequiredAttribute(true)]
            class Foo {
              string str = "my string"; // Warning: Localizable string
            }
            </code></example>
        </member>
        <member name="T:JetBrains.Annotations.CannotApplyEqualityOperatorAttribute">
            <summary>
            Indicates that the value of the marked type (or its derivatives)
            cannot be compared using '==' or '!=' operators and <c>Equals()</c>
            should be used instead. However, using '==' or '!=' for comparison
            with <c>null</c> is always permitted.
            </summary>
            <example><code>
            [CannotApplyEqualityOperator]
            class NoEquality { }
            
            class UsesNoEquality {
              void Test() {
                var ca1 = new NoEquality();
                var ca2 = new NoEquality();
                if (ca1 != null) { // OK
                  bool condition = ca1 == ca2; // Warning
                }
              }
            }
            </code></example>
        </member>
        <member name="T:JetBrains.Annotations.BaseTypeRequiredAttribute">
            <summary>
            When applied to a target attribute, specifies a requirement for any type marked
            with the target attribute to implement or inherit specific type or types.
            </summary>
            <example><code>
            [BaseTypeRequired(typeof(IComponent)] // Specify requirement
            class ComponentAttribute : Attribute { }
            
            [Component] // ComponentAttribute requires implementing IComponent interface
            class MyComponent : IComponent { }
            </code></example>
        </member>
        <member name="T:JetBrains.Annotations.UsedImplicitlyAttribute">
            <summary>
            Indicates that the marked symbol is used implicitly (e.g. via reflection, in external library),
            so this symbol will be ignored by usage-checking inspections. <br/>
            You can use <see cref="T:JetBrains.Annotations.ImplicitUseKindFlags"/> and <see cref="T:JetBrains.Annotations.ImplicitUseTargetFlags"/>
            to configure how this attribute is applied.
            </summary>
            <example><code>
            [UsedImplicitly]
            public class TypeConverter {}
            
            public class SummaryData
            {
              [UsedImplicitly(ImplicitUseKindFlags.InstantiatedWithFixedConstructorSignature)]
              public SummaryData() {}
            }
            
            [UsedImplicitly(ImplicitUseTargetFlags.WithInheritors | ImplicitUseTargetFlags.Default)]
            public interface IService {}
            </code></example>
        </member>
        <member name="T:JetBrains.Annotations.MeansImplicitUseAttribute">
            <summary>
            Can be applied to attributes, type parameters, and parameters of a type assignable from <see cref="T:System.Type"/> .
            When applied to an attribute, the decorated attribute behaves the same as <see cref="T:JetBrains.Annotations.UsedImplicitlyAttribute"/>.
            When applied to a type parameter or to a parameter of type <see cref="T:System.Type"/>,
            indicates that the corresponding type is used implicitly.
            </summary>
        </member>
        <member name="T:JetBrains.Annotations.ImplicitUseKindFlags">
            <summary>
            Specifies the details of implicitly used symbol when it is marked
            with <see cref="T:JetBrains.Annotations.MeansImplicitUseAttribute"/> or <see cref="T:JetBrains.Annotations.UsedImplicitlyAttribute"/>.
            </summary>
        </member>
        <member name="F:JetBrains.Annotations.ImplicitUseKindFlags.Access">
            <summary>Only entity marked with attribute considered used.</summary>
        </member>
        <member name="F:JetBrains.Annotations.ImplicitUseKindFlags.Assign">
            <summary>Indicates implicit assignment to a member.</summary>
        </member>
        <member name="F:JetBrains.Annotations.ImplicitUseKindFlags.InstantiatedWithFixedConstructorSignature">
            <summary>
            Indicates implicit instantiation of a type with fixed constructor signature.
            That means any unused constructor parameters won't be reported as such.
            </summary>
        </member>
        <member name="F:JetBrains.Annotations.ImplicitUseKindFlags.InstantiatedNoFixedConstructorSignature">
            <summary>Indicates implicit instantiation of a type.</summary>
        </member>
        <member name="T:JetBrains.Annotations.ImplicitUseTargetFlags">
            <summary>
            Specifies what is considered to be used implicitly when marked
            with <see cref="T:JetBrains.Annotations.MeansImplicitUseAttribute"/> or <see cref="T:JetBrains.Annotations.UsedImplicitlyAttribute"/>.
            </summary>
        </member>
        <member name="F:JetBrains.Annotations.ImplicitUseTargetFlags.Members">
            <summary>Members of the type marked with the attribute are considered used.</summary>
        </member>
        <member name="F:JetBrains.Annotations.ImplicitUseTargetFlags.WithInheritors">
            <summary> Inherited entities are considered used. </summary>
        </member>
        <member name="F:JetBrains.Annotations.ImplicitUseTargetFlags.WithMembers">
            <summary>Entity marked with the attribute and all its members considered used.</summary>
        </member>
        <member name="T:JetBrains.Annotations.PublicAPIAttribute">
            <summary>
            This attribute is intended to mark publicly available API,
            which should not be removed and so is treated as used.
            </summary>
        </member>
        <member name="T:JetBrains.Annotations.InstantHandleAttribute">
            <summary>
            Tells the code analysis engine if the parameter is completely handled when the invoked method is on stack.
            If the parameter is a delegate, indicates that delegate can only be invoked during method execution
            (the delegate can be invoked zero or multiple times, but not stored to some field and invoked later,
            when the containing method is no longer on the execution stack).
            If the parameter is an enumerable, indicates that it is enumerated while the method is executed.
            If <see cref="P:JetBrains.Annotations.InstantHandleAttribute.RequireAwait"/> is true, the attribute will only takes effect if the method invocation is located under the 'await' expression.
            </summary>
        </member>
        <member name="P:JetBrains.Annotations.InstantHandleAttribute.RequireAwait">
            <summary>
            Require the method invocation to be used under the 'await' expression for this attribute to take effect on code analysis engine.
            Can be used for delegate/enumerable parameters of 'async' methods.
            </summary>
        </member>
        <member name="T:JetBrains.Annotations.PureAttribute">
            <summary>
            Indicates that a method does not make any observable state changes.
            The same as <c>System.Diagnostics.Contracts.PureAttribute</c>.
            </summary>
            <example><code>
            [Pure] int Multiply(int x, int y) => x * y;
            
            void M() {
              Multiply(123, 42); // Warning: Return value of pure method is not used
            }
            </code></example>
        </member>
        <member name="T:JetBrains.Annotations.MustUseReturnValueAttribute">
            <summary>
            Indicates that the return value of the method invocation must be used.
            </summary>
            <remarks>
            Methods decorated with this attribute (in contrast to pure methods) might change state,
            but make no sense without using their return value. <br/>
            Similarly to <see cref="T:JetBrains.Annotations.PureAttribute"/>, this attribute
            will help to detect usages of the method when the return value is not used.
            Optionally, you can specify a message to use when showing warnings, e.g.
            <code>[MustUseReturnValue("Use the return value to...")]</code>.
            </remarks>
        </member>
        <member name="T:JetBrains.Annotations.RequireStaticDelegateAttribute">
            <summary>
            This annotation allows to enforce allocation-less usage patterns of delegates for performance-critical APIs.
            When this annotation is applied to the parameter of delegate type, IDE checks the input argument of this parameter:
            * When lambda expression or anonymous method is passed as an argument, IDE verifies that the passed closure
              has no captures of the containing local variables and the compiler is able to cache the delegate instance
              to avoid heap allocations. Otherwise the warning is produced.
            * IDE warns when method name or local function name is passed as an argument as this always results
              in heap allocation of the delegate instance.
            </summary>
            <remarks>
            In C# 9.0 code IDE would also suggest to annotate the anonymous function with 'static' modifier
            to make use of the similar analysis provided by the language/compiler.
            </remarks>
        </member>
        <member name="T:JetBrains.Annotations.ProvidesContextAttribute">
            <summary>
            Indicates the type member or parameter of some type, that should be used instead of all other ways
            to get the value of that type. This annotation is useful when you have some "context" value evaluated
            and stored somewhere, meaning that all other ways to get this value must be consolidated with existing one.
            </summary>
            <example><code>
            class Foo {
              [ProvidesContext] IBarService _barService = ...;
            
              void ProcessNode(INode node) {
                DoSomething(node, node.GetGlobalServices().Bar);
                //              ^ Warning: use value of '_barService' field
              }
            }
            </code></example>
        </member>
        <member name="T:JetBrains.Annotations.PathReferenceAttribute">
            <summary>
            Indicates that a parameter is a path to a file or a folder within a web project.
            Path can be relative or absolute, starting from web root (~).
            </summary>
        </member>
        <member name="T:JetBrains.Annotations.SourceTemplateAttribute">
            <summary>
            An extension method marked with this attribute is processed by code completion
            as a 'Source Template'. When the extension method is completed over some expression, its source code
            is automatically expanded like a template at call site.
            </summary>
            <remarks>
            Template method body can contain valid source code and/or special comments starting with '$'.
            Text inside these comments is added as source code when the template is applied. Template parameters
            can be used either as additional method parameters or as identifiers wrapped in two '$' signs.
            Use the <see cref="T:JetBrains.Annotations.MacroAttribute"/> attribute to specify macros for parameters.
            </remarks>
            <example>
            In this example, the 'forEach' method is a source template available over all values
            of enumerable types, producing ordinary C# 'foreach' statement and placing caret inside block:
            <code>
            [SourceTemplate]
            public static void forEach&lt;T&gt;(this IEnumerable&lt;T&gt; xs) {
              foreach (var x in xs) {
                 //$ $END$
              }
            }
            </code>
            </example>
        </member>
        <member name="T:JetBrains.Annotations.MacroAttribute">
            <summary>
            Allows specifying a macro for a parameter of a <see cref="T:JetBrains.Annotations.SourceTemplateAttribute">source template</see>.
            </summary>
            <remarks>
            You can apply the attribute on the whole method or on any of its additional parameters. The macro expression
            is defined in the <see cref="P:JetBrains.Annotations.MacroAttribute.Expression"/> property. When applied on a method, the target
            template parameter is defined in the <see cref="P:JetBrains.Annotations.MacroAttribute.Target"/> property. To apply the macro silently
            for the parameter, set the <see cref="P:JetBrains.Annotations.MacroAttribute.Editable"/> property value = -1.
            </remarks>
            <example>
            Applying the attribute on a source template method:
            <code>
            [SourceTemplate, Macro(Target = "item", Expression = "suggestVariableName()")]
            public static void forEach&lt;T&gt;(this IEnumerable&lt;T&gt; collection) {
              foreach (var item in collection) {
                //$ $END$
              }
            }
            </code>
            Applying the attribute on a template method parameter:
            <code>
            [SourceTemplate]
            public static void something(this Entity x, [Macro(Expression = "guid()", Editable = -1)] string newguid) {
              /*$ var $x$Id = "$newguid$" + x.ToString();
              x.DoSomething($x$Id); */
            }
            </code>
            </example>
        </member>
        <member name="P:JetBrains.Annotations.MacroAttribute.Expression">
            <summary>
            Allows specifying a macro that will be executed for a <see cref="T:JetBrains.Annotations.SourceTemplateAttribute">source template</see>
            parameter when the template is expanded.
            </summary>
        </member>
        <member name="P:JetBrains.Annotations.MacroAttribute.Editable">
            <summary>
            Allows specifying which occurrence of the target parameter becomes editable when the template is deployed.
            </summary>
            <remarks>
            If the target parameter is used several times in the template, only one occurrence becomes editable;
            other occurrences are changed synchronously. To specify the zero-based index of the editable occurrence,
            use values >= 0. To make the parameter non-editable when the template is expanded, use -1.
            </remarks>
        </member>
        <member name="P:JetBrains.Annotations.MacroAttribute.Target">
            <summary>
            Identifies the target parameter of a <see cref="T:JetBrains.Annotations.SourceTemplateAttribute">source template</see> if the
            <see cref="T:JetBrains.Annotations.MacroAttribute"/> is applied on a template method.
            </summary>
        </member>
        <member name="T:JetBrains.Annotations.AspMvcActionAttribute">
            <summary>
            ASP.NET MVC attribute. If applied to a parameter, indicates that the parameter
            is an MVC action. If applied to a method, the MVC action name is calculated
            implicitly from the context. Use this attribute for custom wrappers similar to
            <c>System.Web.Mvc.Html.ChildActionExtensions.RenderAction(HtmlHelper, String)</c>.
            </summary>
        </member>
        <member name="T:JetBrains.Annotations.AspMvcAreaAttribute">
            <summary>
            ASP.NET MVC attribute. Indicates that the marked parameter is an MVC area.
            Use this attribute for custom wrappers similar to
            <c>System.Web.Mvc.Html.ChildActionExtensions.RenderAction(HtmlHelper, String)</c>.
            </summary>
        </member>
        <member name="T:JetBrains.Annotations.AspMvcControllerAttribute">
            <summary>
            ASP.NET MVC attribute. If applied to a parameter, indicates that the parameter is
            an MVC controller. If applied to a method, the MVC controller name is calculated
            implicitly from the context. Use this attribute for custom wrappers similar to
            <c>System.Web.Mvc.Html.ChildActionExtensions.RenderAction(HtmlHelper, String, String)</c>.
            </summary>
        </member>
        <member name="T:JetBrains.Annotations.AspMvcMasterAttribute">
            <summary>
            ASP.NET MVC attribute. Indicates that the marked parameter is an MVC Master. Use this attribute
            for custom wrappers similar to <c>System.Web.Mvc.Controller.View(String, String)</c>.
            </summary>
        </member>
        <member name="T:JetBrains.Annotations.AspMvcModelTypeAttribute">
            <summary>
            ASP.NET MVC attribute. Indicates that the marked parameter is an MVC model type. Use this attribute
            for custom wrappers similar to <c>System.Web.Mvc.Controller.View(String, Object)</c>.
            </summary>
        </member>
        <member name="T:JetBrains.Annotations.AspMvcPartialViewAttribute">
            <summary>
            ASP.NET MVC attribute. If applied to a parameter, indicates that the parameter is an MVC
            partial view. If applied to a method, the MVC partial view name is calculated implicitly
            from the context. Use this attribute for custom wrappers similar to
            <c>System.Web.Mvc.Html.RenderPartialExtensions.RenderPartial(HtmlHelper, String)</c>.
            </summary>
        </member>
        <member name="T:JetBrains.Annotations.AspMvcSuppressViewErrorAttribute">
            <summary>
            ASP.NET MVC attribute. Allows disabling inspections for MVC views within a class or a method.
            </summary>
        </member>
        <member name="T:JetBrains.Annotations.AspMvcDisplayTemplateAttribute">
            <summary>
            ASP.NET MVC attribute. Indicates that a parameter is an MVC display template.
            Use this attribute for custom wrappers similar to
            <c>System.Web.Mvc.Html.DisplayExtensions.DisplayForModel(HtmlHelper, String)</c>.
            </summary>
        </member>
        <member name="T:JetBrains.Annotations.AspMvcEditorTemplateAttribute">
            <summary>
            ASP.NET MVC attribute. Indicates that the marked parameter is an MVC editor template.
            Use this attribute for custom wrappers similar to
            <c>System.Web.Mvc.Html.EditorExtensions.EditorForModel(HtmlHelper, String)</c>.
            </summary>
        </member>
        <member name="T:JetBrains.Annotations.AspMvcTemplateAttribute">
            <summary>
            ASP.NET MVC attribute. Indicates that the marked parameter is an MVC template.
            Use this attribute for custom wrappers similar to
            <c>System.ComponentModel.DataAnnotations.UIHintAttribute(System.String)</c>.
            </summary>
        </member>
        <member name="T:JetBrains.Annotations.AspMvcViewAttribute">
            <summary>
            ASP.NET MVC attribute. If applied to a parameter, indicates that the parameter
            is an MVC view component. If applied to a method, the MVC view name is calculated implicitly
            from the context. Use this attribute for custom wrappers similar to
            <c>System.Web.Mvc.Controller.View(Object)</c>.
            </summary>
        </member>
        <member name="T:JetBrains.Annotations.AspMvcViewComponentAttribute">
            <summary>
            ASP.NET MVC attribute. If applied to a parameter, indicates that the parameter
            is an MVC view component name.
            </summary>
        </member>
        <member name="T:JetBrains.Annotations.AspMvcViewComponentViewAttribute">
            <summary>
            ASP.NET MVC attribute. If applied to a parameter, indicates that the parameter
            is an MVC view component view. If applied to a method, the MVC view component view name is default.
            </summary>
        </member>
        <member name="T:JetBrains.Annotations.AspMvcActionSelectorAttribute">
            <summary>
            ASP.NET MVC attribute. When applied to a parameter of an attribute,
            indicates that this parameter is an MVC action name.
            </summary>
            <example><code>
            [ActionName("Foo")]
            public ActionResult Login(string returnUrl) {
              ViewBag.ReturnUrl = Url.Action("Foo"); // OK
              return RedirectToAction("Bar"); // Error: Cannot resolve action
            }
            </code></example>
        </member>
        <member name="T:JetBrains.Annotations.RazorSectionAttribute">
            <summary>
            Razor attribute. Indicates that the marked parameter or method is a Razor section.
            Use this attribute for custom wrappers similar to
            <c>System.Web.WebPages.WebPageBase.RenderSection(String)</c>.
            </summary>
        </member>
        <member name="T:JetBrains.Annotations.CollectionAccessAttribute">
            <summary>
            Indicates how method, constructor invocation, or property access
            over collection type affects the contents of the collection.
            When applied to a return value of a method indicates if the returned collection
            is created exclusively for the caller (CollectionAccessType.UpdatedContent) or
            can be read/updated from outside (CollectionAccessType.Read | CollectionAccessType.UpdatedContent)
            Use <see cref="P:JetBrains.Annotations.CollectionAccessAttribute.CollectionAccessType"/> to specify the access type.
            </summary>
            <remarks>
            Using this attribute only makes sense if all collection methods are marked with this attribute.
            </remarks>
            <example><code>
            public class MyStringCollection : List&lt;string&gt;
            {
              [CollectionAccess(CollectionAccessType.Read)]
              public string GetFirstString()
              {
                return this.ElementAt(0);
              }
            }
            class Test
            {
              public void Foo()
              {
                // Warning: Contents of the collection is never updated
                var col = new MyStringCollection();
                string x = col.GetFirstString();
              }
            }
            </code></example>
        </member>
        <member name="T:JetBrains.Annotations.CollectionAccessType">
            <summary>
            Provides a value for the <see cref="T:JetBrains.Annotations.CollectionAccessAttribute"/> to define
            how the collection method invocation affects the contents of the collection.
            </summary>
        </member>
        <member name="F:JetBrains.Annotations.CollectionAccessType.None">
            <summary>Method does not use or modify content of the collection.</summary>
        </member>
        <member name="F:JetBrains.Annotations.CollectionAccessType.Read">
            <summary>Method only reads content of the collection but does not modify it.</summary>
        </member>
        <member name="F:JetBrains.Annotations.CollectionAccessType.ModifyExistingContent">
            <summary>Method can change content of the collection but does not add new elements.</summary>
        </member>
        <member name="F:JetBrains.Annotations.CollectionAccessType.UpdatedContent">
            <summary>Method can add new elements to the collection.</summary>
        </member>
        <member name="T:JetBrains.Annotations.AssertionMethodAttribute">
            <summary>
            Indicates that the marked method is assertion method, i.e. it halts the control flow if
            one of the conditions is satisfied. To set the condition, mark one of the parameters with
            <see cref="T:JetBrains.Annotations.AssertionConditionAttribute"/> attribute.
            </summary>
        </member>
        <member name="T:JetBrains.Annotations.AssertionConditionAttribute">
            <summary>
            Indicates the condition parameter of the assertion method. The method itself should be
            marked by <see cref="T:JetBrains.Annotations.AssertionMethodAttribute"/> attribute. The mandatory argument of
            the attribute is the assertion type.
            </summary>
        </member>
        <member name="T:JetBrains.Annotations.AssertionConditionType">
            <summary>
            Specifies assertion type. If the assertion method argument satisfies the condition,
            then the execution continues. Otherwise, execution is assumed to be halted.
            </summary>
        </member>
        <member name="F:JetBrains.Annotations.AssertionConditionType.IS_TRUE">
            <summary>Marked parameter should be evaluated to true.</summary>
        </member>
        <member name="F:JetBrains.Annotations.AssertionConditionType.IS_FALSE">
            <summary>Marked parameter should be evaluated to false.</summary>
        </member>
        <member name="F:JetBrains.Annotations.AssertionConditionType.IS_NULL">
            <summary>Marked parameter should be evaluated to null value.</summary>
        </member>
        <member name="F:JetBrains.Annotations.AssertionConditionType.IS_NOT_NULL">
            <summary>Marked parameter should be evaluated to not null value.</summary>
        </member>
        <member name="T:JetBrains.Annotations.TerminatesProgramAttribute">
            <summary>
            Indicates that the marked method unconditionally terminates control flow execution.
            For example, it could unconditionally throw exception.
            </summary>
        </member>
        <member name="T:JetBrains.Annotations.LinqTunnelAttribute">
            <summary>
            Indicates that the method is a pure LINQ method, with postponed enumeration (like Enumerable.Select,
            .Where). This annotation allows inference of [InstantHandle] annotation for parameters
            of delegate type by analyzing LINQ method chains.
            </summary>
        </member>
        <member name="T:JetBrains.Annotations.NoEnumerationAttribute">
            <summary>
            Indicates that IEnumerable passed as a parameter is not enumerated.
            Use this annotation to suppress the 'Possible multiple enumeration of IEnumerable' inspection.
            </summary>
            <example><code>
            static void ThrowIfNull&lt;T&gt;([NoEnumeration] T v, string n) where T : class
            {
              // custom check for null but no enumeration
            }
            
            void Foo(IEnumerable&lt;string&gt; values)
            {
              ThrowIfNull(values, nameof(values));
              var x = values.ToList(); // No warnings about multiple enumeration
            }
            </code></example>
        </member>
        <member name="T:JetBrains.Annotations.RegexPatternAttribute">
            <summary>
            Indicates that the marked parameter, field, or property is a regular expression pattern.
            </summary>
        </member>
        <member name="T:JetBrains.Annotations.InjectedLanguage">
            <summary>
            Language of injected code fragment inside marked by <see cref="T:JetBrains.Annotations.LanguageInjectionAttribute"/> string literal.
            </summary>
        </member>
        <member name="T:JetBrains.Annotations.LanguageInjectionAttribute">
            <summary>
            Indicates that the marked parameter, field, or property is accepting a string literal
            containing code fragment in a language specified by the <see cref="P:JetBrains.Annotations.LanguageInjectionAttribute.InjectedLanguage"/>.
            </summary>
            <example><code>
            void Foo([LanguageInjection(InjectedLanguage.CSS, Prefix = "body{", Suffix = "}")] string cssProps)
            {
              // cssProps should only contains a list of CSS properties
            }
            </code></example>
        </member>
        <member name="P:JetBrains.Annotations.LanguageInjectionAttribute.InjectedLanguage">
            <summary>Specify a language of injected code fragment.</summary>
        </member>
        <member name="P:JetBrains.Annotations.LanguageInjectionAttribute.Prefix">
            <summary>Specify a string that "precedes" injected string literal.</summary>
        </member>
        <member name="P:JetBrains.Annotations.LanguageInjectionAttribute.Suffix">
            <summary>Specify a string that "follows" injected string literal.</summary>
        </member>
        <member name="T:JetBrains.Annotations.NoReorderAttribute">
            <summary>
            Prevents the Member Reordering feature from tossing members of the marked class.
            </summary>
            <remarks>
            The attribute must be mentioned in your member reordering patterns.
            </remarks>
        </member>
        <member name="T:JetBrains.Annotations.XamlItemsControlAttribute">
            <summary>
            XAML attribute. Indicates the type that has <c>ItemsSource</c> property and should be treated
            as <c>ItemsControl</c>-derived type, to enable inner items <c>DataContext</c> type resolve.
            </summary>
        </member>
        <member name="T:JetBrains.Annotations.XamlItemBindingOfItemsControlAttribute">
            <summary>
            XAML attribute. Indicates the property of some <c>BindingBase</c>-derived type, that
            is used to bind some item of <c>ItemsControl</c>-derived type. This annotation will
            enable the <c>DataContext</c> type resolve for XAML bindings for such properties.
            </summary>
            <remarks>
            Property should have the tree ancestor of the <c>ItemsControl</c> type or
            marked with the <see cref="T:JetBrains.Annotations.XamlItemsControlAttribute"/> attribute.
            </remarks>
        </member>
        <member name="T:JetBrains.Annotations.XamlItemStyleOfItemsControlAttribute">
            <summary>
            XAML attribute. Indicates the property of some <c>Style</c>-derived type, that
            is used to style items of <c>ItemsControl</c>-derived type. This annotation will
            enable the <c>DataContext</c> type resolve for XAML bindings for such properties.
            </summary>
            <remarks>
            Property should have the tree ancestor of the <c>ItemsControl</c> type or
            marked with the <see cref="T:JetBrains.Annotations.XamlItemsControlAttribute"/> attribute.
            </remarks>
        </member>
        <member name="T:JetBrains.Annotations.XamlOneWayBindingModeByDefaultAttribute">
            <summary>
            XAML attribute. Indicates that DependencyProperty has <c>OneWay</c> binding mode by default.
            </summary>
            <remarks>
            This attribute must be applied to DependencyProperty's CLR accessor property if it is present, to DependencyProperty descriptor field otherwise.
            </remarks>
        </member>
        <member name="T:JetBrains.Annotations.XamlTwoWayBindingModeByDefaultAttribute">
            <summary>
            XAML attribute. Indicates that DependencyProperty has <c>TwoWay</c> binding mode by default.
            </summary>
            <remarks>
            This attribute must be applied to DependencyProperty's CLR accessor property if it is present, to DependencyProperty descriptor field otherwise.
            </remarks>
        </member>
        <member name="T:JetBrains.Annotations.RouteTemplateAttribute">
            <summary>
            Indicates that the marked parameter, field, or property is a route template.
            </summary>
            <remarks>
            This attribute allows IDE to recognize the use of web frameworks' route templates
            to enable syntax highlighting, code completion, navigation, rename and other features in string literals.
            </remarks>
        </member>
        <member name="T:JetBrains.Annotations.RouteParameterConstraintAttribute">
            <summary>
            Indicates that the marked type is custom route parameter constraint,
            which is registered in application's Startup with name <c>ConstraintName</c>
            </summary>
            <remarks>
            You can specify <c>ProposedType</c> if target constraint matches only route parameters of specific type,
            it will allow IDE to create method's parameter from usage in route template
            with specified type instead of default <c>System.String</c>
            and check if constraint's proposed type conflicts with matched parameter's type
            </remarks>
        </member>
        <member name="T:JetBrains.Annotations.UriStringAttribute">
            <summary>
            Indicates that the marked parameter, field, or property is an URI string.
            </summary>
            <remarks>
            This attribute enables code completion, navigation, rename and other features
            in URI string literals assigned to annotated parameter, field or property.
            </remarks>
        </member>
        <member name="T:JetBrains.Annotations.CodeTemplateAttribute">
            <summary>
            <para>
            Defines the code search template using the Structural Search and Replace syntax.
            It allows you to find and, if necessary, replace blocks of code that match a specific pattern.
            Search and replace patterns consist of a textual part and placeholders.
            Textural part must contain only identifiers allowed in the target language and will be matched exactly (white spaces, tabulation characters, and line breaks are ignored).
            Placeholders allow matching variable parts of the target code blocks.
            A placeholder has the following format: $placeholder_name$- where placeholder_name is an arbitrary identifier.
            </para>
            <para>
            Available placeholders:
            <list type="bullet">
            <item>$this$ - expression of containing type</item>
            <item>$thisType$ - containing type</item>
            <item>$member$ - current member placeholder</item>
            <item>$qualifier$ - this placeholder is available in the replace pattern and can be used to insert qualifier expression matched by the $member$ placeholder.
            (Note that if $qualifier$ placeholder is used, then $member$ placeholder will match only qualified references)</item>
            <item>$expression$ - expression of any type</item>
            <item>$identifier$ - identifier placeholder</item>
            <item>$args$ - any number of arguments</item>
            <item>$arg$ - single argument</item>
            <item>$arg1$ ... $arg10$ - single argument</item>
            <item>$stmts$ - any number of statements</item>
            <item>$stmt$ - single statement</item>
            <item>$stmt1$ ... $stmt10$ - single statement</item>
            <item>$name{Expression, 'Namespace.FooType'}$ - expression with 'Namespace.FooType' type</item>
            <item>$expression{'Namespace.FooType'}$ - expression with 'Namespace.FooType' type</item>
            <item>$name{Type, 'Namespace.FooType'}$ - 'Namespace.FooType' type</item>
            <item>$type{'Namespace.FooType'}$ - 'Namespace.FooType' type</item>
            <item>$statement{1,2}$ - 1 or 2 statements</item>
            </list>
            </para>
            <para>
            Note that you can also define your own placeholders of the supported types and specify arguments for each placeholder type.
            This can be done using the following format: $name{type, arguments}$. Where 'name' - is the name of your placeholder,
            'type' - is the type of your placeholder (one of the following: Expression, Type, Identifier, Statement, Argument, Member),
            'arguments' - arguments list for your placeholder. Each placeholder type supports it's own arguments, check examples below for mode details.
            Placeholder type may be omitted and determined from the placeholder name, if name has one of the following prefixes:
            <list type="bullet">
            <item>expr, expression - expression placeholder, e.g. $exprPlaceholder{}$, $expressionFoo{}$</item>
            <item>arg, argument - argument placeholder, e.g. $argPlaceholder{}$, $argumentFoo{}$</item>
            <item>ident, identifier - identifier placeholder, e.g. $identPlaceholder{}$, $identifierFoo{}$</item>
            <item>stmt, statement - statement placeholder, e.g. $stmtPlaceholder{}$, $statementFoo{}$</item>
            <item>type - type placeholder, e.g. $typePlaceholder{}$, $typeFoo{}$</item>
            <item>member - member placeholder, e.g. $memberPlaceholder{}$, $memberFoo{}$</item>
            </list>
            </para>
            <para>
            Expression placeholder arguments:
            <list type="bullet">
            <item>expressionType - string value in single quotes, specifies full type name to match (empty string by default)</item>
            <item>exactType - boolean value, specifies if expression should have exact type match (false by default)</item>
            </list>
            Examples:
            <list type="bullet">
            <item>$myExpr{Expression, 'Namespace.FooType', true}$ - defines expression placeholder, matching expressions of the 'Namespace.FooType' type with exact matching.</item>
            <item>$myExpr{Expression, 'Namespace.FooType'}$ - defines expression placeholder, matching expressions of the 'Namespace.FooType' type or expressions which can be implicitly converted to 'Namespace.FooType'.</item>
            <item>$myExpr{Expression}$ - defines expression placeholder, matching expressions of any type.</item>
            <item>$exprFoo{'Namespace.FooType', true}$ - defines expression placeholder, matching expressions of the 'Namespace.FooType' type with exact matching.</item>
            </list>
            </para>
            <para>
            Type placeholder arguments:
            <list type="bullet">
            <item>type - string value in single quotes, specifies full type name to match (empty string by default)</item>
            <item>exactType - boolean value, specifies if expression should have exact type match (false by default)</item>
            </list>
            Examples:
            <list type="bullet">
            <item>$myType{Type, 'Namespace.FooType', true}$ - defines type placeholder, matching 'Namespace.FooType' types with exact matching.</item>
            <item>$myType{Type, 'Namespace.FooType'}$ - defines type placeholder, matching 'Namespace.FooType' types or types, which can be implicitly converted to 'Namespace.FooType'.</item>
            <item>$myType{Type}$ - defines type placeholder, matching any type.</item>
            <item>$typeFoo{'Namespace.FooType', true}$ - defines types placeholder, matching 'Namespace.FooType' types with exact matching.</item>
            </list>
            </para>
            <para>
            Identifier placeholder arguments:
            <list type="bullet">
            <item>nameRegex - string value in single quotes, specifies regex to use for matching (empty string by default)</item>
            <item>nameRegexCaseSensitive - boolean value, specifies if name regex is case sensitive (true by default)</item>
            <item>type - string value in single quotes, specifies full type name to match (empty string by default)</item>
            <item>exactType - boolean value, specifies if expression should have exact type match (false by default)</item>
            </list>
            Examples:
            <list type="bullet">
            <item>$myIdentifier{Identifier, 'my.*', false, 'Namespace.FooType', true}$ - defines identifier placeholder, matching identifiers (ignoring case) starting with 'my' prefix with 'Namespace.FooType' type.</item>
            <item>$myIdentifier{Identifier, 'my.*', true, 'Namespace.FooType', true}$ - defines identifier placeholder, matching identifiers (case sensitively) starting with 'my' prefix with 'Namespace.FooType' type.</item>
            <item>$identFoo{'my.*'}$ - defines identifier placeholder, matching identifiers (case sensitively) starting with 'my' prefix.</item>
            </list>
            </para>
            <para>
            Statement placeholder arguments:
            <list type="bullet">
            <item>minimalOccurrences - minimal number of statements to match (-1 by default)</item>
            <item>maximalOccurrences - maximal number of statements to match (-1 by default)</item>
            </list>
            Examples:
            <list type="bullet">
            <item>$myStmt{Statement, 1, 2}$ - defines statement placeholder, matching 1 or 2 statements.</item>
            <item>$myStmt{Statement}$ - defines statement placeholder, matching any number of statements.</item>
            <item>$stmtFoo{1, 2}$ - defines statement placeholder, matching 1 or 2 statements.</item>
            </list>
            </para>
            <para>
            Argument placeholder arguments:
            <list type="bullet">
            <item>minimalOccurrences - minimal number of arguments to match (-1 by default)</item>
            <item>maximalOccurrences - maximal number of arguments to match (-1 by default)</item>
            </list>
            Examples:
            <list type="bullet">
            <item>$myArg{Argument, 1, 2}$ - defines argument placeholder, matching 1 or 2 arguments.</item>
            <item>$myArg{Argument}$ - defines argument placeholder, matching any number of arguments.</item>
            <item>$argFoo{1, 2}$ - defines argument placeholder, matching 1 or 2 arguments.</item>
            </list>
            </para>
            <para>
            Member placeholder arguments:
            <list type="bullet">
            <item>docId - string value in single quotes, specifies XML documentation id of the member to match (empty by default)</item>
            </list>
            Examples:
            <list type="bullet">
            <item>$myMember{Member, 'M:System.String.IsNullOrEmpty(System.String)'}$ - defines member placeholder, matching 'IsNullOrEmpty' member of the 'System.String' type.</item>
            <item>$memberFoo{'M:System.String.IsNullOrEmpty(System.String)'}$ - defines member placeholder, matching 'IsNullOrEmpty' member of the 'System.String' type.</item>
            </list>
            </para>
            <para>
            For more information please refer to the <a href="https://www.jetbrains.com/help/resharper/Navigation_and_Search__Structural_Search_and_Replace.html">Structural Search and Replace</a> article.
            </para>
            </summary>
        </member>
        <member name="P:JetBrains.Annotations.CodeTemplateAttribute.SearchTemplate">
            <summary>
            Structural search pattern to use in the code template.
            Pattern includes textual part, which must contain only identifiers allowed in the target language,
            and placeholders, which allow matching variable parts of the target code blocks.
            </summary>
        </member>
        <member name="P:JetBrains.Annotations.CodeTemplateAttribute.Message">
            <summary>
            Message to show when the search pattern was found.
            You can also prepend the message text with "Error:", "Warning:", "Suggestion:" or "Hint:" prefix to specify the pattern severity.
            Code patterns with replace template produce suggestions by default.
            However, if replace template is not provided, then warning severity will be used.
            </summary>
        </member>
        <member name="P:JetBrains.Annotations.CodeTemplateAttribute.ReplaceTemplate">
            <summary>
            Structural search replace pattern to use in code template replacement.
            </summary>
        </member>
        <member name="P:JetBrains.Annotations.CodeTemplateAttribute.ReplaceMessage">
            <summary>
            Replace message to show in the light bulb.
            </summary>
        </member>
        <member name="P:JetBrains.Annotations.CodeTemplateAttribute.FormatAfterReplace">
            <summary>
            Apply code formatting after code replacement.
            </summary>
        </member>
        <member name="P:JetBrains.Annotations.CodeTemplateAttribute.MatchSimilarConstructs">
            <summary>
            Whether similar code blocks should be matched.
            </summary>
        </member>
        <member name="P:JetBrains.Annotations.CodeTemplateAttribute.ShortenReferences">
            <summary>
            Automatically insert namespace import directives or remove qualifiers that become redundant after the template is applied.
            </summary>
        </member>
        <member name="P:JetBrains.Annotations.CodeTemplateAttribute.SuppressionKey">
            <summary>
            String to use as a suppression key.
            By default the following suppression key is used 'CodeTemplate_SomeType_SomeMember',
            where 'SomeType' and 'SomeMember' are names of the associated containing type and member to which this attribute is applied.
            </summary>
        </member>
    </members>
</doc>
tools\TfsCmdlets\Lib\Desktop\cs\Microsoft.TeamFoundation.Build.Client.resources.dll
md5: 54287CE54260F59E62732F4432510807 | sha1: 663C43D1D993A32649FB90871A144FB7B3703C6D | sha256: A1BE20A208E612FFED359366AB8F41EC038AFA856DCB723CA4845622D9A686E3 | sha512: 7F4CDF688ED9FC3CC7786668E13F3F6A543329225424A699661868C30ADA6C8E04DBD23797004BF1EF63662BB4EB3E59D36D8401533EC8B623F692A872A4FD62
tools\TfsCmdlets\Lib\Desktop\cs\Microsoft.TeamFoundation.Build.Common.resources.dll
md5: 02FBD29384F8F7AB678CD590CC1D2E1C | sha1: 8B0329005B63242115BEC0A910B31F75B6E97F1D | sha256: 25D83DEB52673C5F53CCF9D5B77C926E364B98CA8403F4196227DFE0D3A5E1CF | sha512: 825B1719835543F88C79039EAF6B61926F2E358FEDB6DD64EA0D39B587A338971B7FD105BFE4624A0CD25F7FEF061CFB968FA185439A7E88EFC23F20C3050116
tools\TfsCmdlets\Lib\Desktop\cs\Microsoft.TeamFoundation.Client.resources.dll
md5: 9984A0E1A8A4D4A3EB070B1C3F279CC7 | sha1: B3EBCA009617B59B61CB0DB47EF38BE89D8E85E0 | sha256: A101FB5413FA965C438CF166D1C524BC1B3039AF9585AEE5B13A5CD20EB2F82A | sha512: AFF3F285063A772BE3C97DCA284113030CBC0748D5773FA065ED1377E768F55924D23E32DDEDD11E3AB329E68D4D0D998CCC55F9847EE6F51CC333E0346C4CE1
tools\TfsCmdlets\Lib\Desktop\cs\Microsoft.TeamFoundation.Common.resources.dll
md5: 197D86AB9A546A399E7DF8A86C36BCEB | sha1: 399DD38AA5B81EF8EAEC2901B4F37937AE0787C7 | sha256: 33FAB026D72DF44C27CF06F9A6323C3C65879421F48A92928D116A91E0BFE42D | sha512: 80A2D21B45616BB3901ABDE10CF5524DCB2CCB6D92A256D2A99E56842AFB1D44B7F8F2D7ACC6392919F974CCE9EF15763740066DFAC4761AAE6C84F21B886EF4
tools\TfsCmdlets\Lib\Desktop\cs\Microsoft.TeamFoundation.Core.WebApi.resources.dll
md5: 0816493B1BB31A37FD290E6EFB47ADD6 | sha1: 71427C3ACA91A8854CC9F178C0D0DD5ABFE6E46E | sha256: 8F73EF46D41B652C71CA6FCC74B34B14569D38CB80E21C89C5D6584A233CA40B | sha512: 400E616066AED62C46860B84775FF1895026F692653B2E142F1271124896B0B4E011187805C1C09EFD3DC546D5EEF306565230F3C37F14C9DED0398729F8EC55
tools\TfsCmdlets\Lib\Desktop\cs\Microsoft.TeamFoundation.Discussion.Client.resources.dll
md5: C109F18EF93255604174A3CB9F9109E2 | sha1: 441AD3DC655BEA6729169834F807FE78C7D61C8F | sha256: 093C664D0A7E85ED82CEABB734DECF26CD9960AD7BEED22D7E27F1E7A3D85C2B | sha512: BB1BC0CAC0D183D272F51FEBFDF5A0DF0FE9AAEC0412B678DD4CBB433C275100F7A4DDCE85D29D3481F12B14C3786D955508EE780ECF4EAF635C07BB465AAD23
tools\TfsCmdlets\Lib\Desktop\cs\Microsoft.TeamFoundation.SharePointReporting.Integration.resources.dll
md5: 1BEF286E96B64F97F5BDC8E88F1D3B5A | sha1: ADB41BEA9A2B89479417E93B93B54DEB87CD7F5C | sha256: 8CD58D9421A6B424C40781E790A39466620F96E321EFB4DFE691315F56D38162 | sha512: 61349D0A54DBFB5E5456B98D74B7F8DB1D2348855AEBD6C87C2F7F591BBE8C0F9FFE71D543D4EDEAC499970656612AA90F4A715410EC2304300DEFF3E233E4C1
tools\TfsCmdlets\Lib\Desktop\cs\Microsoft.TeamFoundation.TestImpact.Client.resources.dll
md5: 51F8B34D76D9D21157916DACB6A2CA47 | sha1: E639AAFA8E5916C4DA156998EE895A0F245425B5 | sha256: 4E276C2D9FE47D23481A0DC43155245FB685999E258A5791F46ADA8E3CB41CA4 | sha512: 3AB91A75F5F426D24B4032DE4EEE3CC72168A2E3E0FF238CF0FFBB61E19EB65007E19E52EA1908F78AD991E79805AC330BA8DEDFC2EA5EEAFD4708BE47D87E6D
tools\TfsCmdlets\Lib\Desktop\cs\Microsoft.TeamFoundation.TestManagement.Client.resources.dll
md5: ECE9C1AFE2EF8C6EB9B0021067CCCD39 | sha1: F00A016B5AF015AE205ADC97E3F570A0B06F028A | sha256: 1988A09601AB4EEC8DB997F01E2BCB9CFFAA4B9A2DDAC5CA5346026A6DBEFA94 | sha512: 3BE3FBB4D81AFDBF9A7F312090D71BD4260E5DDA179FCCFC3FB557D39B8725C5014DE37EAEFE5909347CB9DD6C3A643AB8AF75508B2F286E582E6B98DBB0D6F6
tools\TfsCmdlets\Lib\Desktop\cs\Microsoft.TeamFoundation.VersionControl.Common.Integration.resources.dll
md5: 48B42078C20A57FB83B7AB37B1B77F25 | sha1: 0B08F6CCF30C7A27DF149EA42217F5DAF12CC1D7 | sha256: B354B75750B6F1E243681D4A008944A70EB470B9260F8A39D27DF47F36A9A8E5 | sha512: 8C5BEEE5A8405659457B7C2CEB7C9EF8685C1D45B976DC19C2A5D15DCFF8DC9E7160E276D1C8FAEA15468EF5BCCC845B88C4B50C49B973948A3D6CDD39564F01
tools\TfsCmdlets\Lib\Desktop\cs\Microsoft.TeamFoundation.VersionControl.Common.resources.dll
md5: B89AA103B2307060FE11D0A4C15477F2 | sha1: 693BE8D28D17087720D5CDBFE4A56985707DBC7A | sha256: EE5E6939BCE28927D004965E334559E0AC5E622F61C8E111B693921BF7F863BE | sha512: 353397C8543A524242EAF09D62DCBE05CAF880E53D7BBF7F0548266266499A56E2D3472B0878919A8A22B47FA049870A512FDF1140D5D80FDC575DF2B3991D6B
tools\TfsCmdlets\Lib\Desktop\cs\Microsoft.TeamFoundation.WorkItemTracking.Client.QueryLanguage.resources.dll
md5: 7F3089A3E4A0550B5F2F7CD1A7C57235 | sha1: 1ACC21ECF862FB255209A1C5B7C6B6DAD9DC6E42 | sha256: CD51AB2656B1F6E0E7FBB88F5C399DC42239117490BEE90EF2FA2684E187E553 | sha512: 7E54DA7A69052DDD90AFBBEB341653D08E7177F92B54EDF09B56910189D1714F02D8A5863524A369B84782ACCD4CB8ABFEEFEE9B4C6AFCDA1D61D33C6EC1CEEA
tools\TfsCmdlets\Lib\Desktop\cs\Microsoft.TeamFoundation.WorkItemTracking.Client.resources.dll
md5: 97BE0971EA04036458C4DF89C0BD12BF | sha1: D520FD107F597B5299857A97F34E9AFAD132185D | sha256: 5BD29F8895BB0CA23C57E425B7C83D7C8591BD54A683CFD11178DD8346125B1F | sha512: 12980451563CD718615E74FD17B9488B440B87C697F7DA4D7F8D378A9747903F3D8033A85575C5B988AD73892100D6FFD604E3CA5E9B42EF28C11885A0A60E04
tools\TfsCmdlets\Lib\Desktop\cs\Microsoft.TeamFoundation.WorkItemTracking.Common.resources.dll
md5: 5825067B4C0DF48090D2AF2AB6784BFF | sha1: E8284131835DD2306497BA0242504896E9C2F1BA | sha256: B510155CB9FE8AC5CB322C270E844DF9391B3F8F89B47D5C82EF4A29E545108A | sha512: 369609BEEA52ECCB7EF0FDC6EC10C807B1970DFF8ED1775E8E8A6B56609BA215F92598F44805B6DB57FA551E94A325E5F94AD9B9BEF4C6475B390F5377388CB0
tools\TfsCmdlets\Lib\Desktop\cs\Microsoft.TeamFoundation.WorkItemTracking.Proxy.resources.dll
md5: C236145EA776104590310042B3AA7E82 | sha1: 333243D5E1898469087C6C1E2E61B735129647DF | sha256: C7C01BC4D69EF37F153C9E827064C3B613E21E9B2B59F50118F13CEC6C9F2292 | sha512: C76A3035C81F9127238BBC4A937F97F0842CE7D0A6DE275A37A377C4D5AC81B30954B50A26F707ECEDCDB51ED30DF91B545D4C52FE2FC4EDE72A2A10C95CA18D
tools\TfsCmdlets\Lib\Desktop\cs\Microsoft.VisualStudio.Services.Client.Interactive.resources.dll
md5: DE8A53936B2FBE4DA6C500A5C2AA28AB | sha1: BEC99E45D73D6F7C5093820F7F553339902A32EB | sha256: 3513ECE4E978A7EACE8AEE4A780287C1E8E64164393BBFD678308082408DFF50 | sha512: CBD4104FE52D666C4BC7803A8249E98CB6547D51FE23B31C4CEC4A2507FC33B51FEFE076E954A730B48663EB84E081EF91D1FE0533CFCA378BE6A6343A6CF04E
tools\TfsCmdlets\Lib\Desktop\cs\Microsoft.VisualStudio.Services.Common.resources.dll
md5: A56F38E559EC1952856577940093300A | sha1: EA9637B9AAAE4264C6D1CADEE4D6222DA98885F6 | sha256: DFB1ED740BB5C718D2C4920F700E4C6583DE380998D656720DD093123E1A3888 | sha512: 160011610B53C1ECBA17009BB0E18A728BAA3E5C372DE02D436ADBADB8080DCE9049387CAF7FED3D93659B1D418AD870891938E28C35FBFC576E64086FCD57E9
tools\TfsCmdlets\Lib\Desktop\cs\Microsoft.VisualStudio.Services.WebApi.resources.dll
md5: A1A335074CD4F73132558123B7D857F5 | sha1: F951C3A1E4244CE7FF97828AE5FBFC57C5A387F8 | sha256: 1306B549B2FE9E778812F5B6281205F8FC465EDB47F784A58AFB403A39864025 | sha512: 17635CDCF49DA60CB09FA52B6AFCCDAA69880A84E993BEF646E4D0F62CB782B4BBCC972EEBFAC2693CEF99B46E502CDFC2FE34CE50F08E30D60196F3E4546213
tools\TfsCmdlets\Lib\Desktop\de\Microsoft.TeamFoundation.Build.Client.resources.dll
md5: ED42E086B36317B63E4B64FFEE8F7F70 | sha1: 7657DE767D538FEA5F1B27C8AF535758301D9585 | sha256: 43BF123BB56B2ECD074B10DB38A7200C70B30521E25011A921531171B797F18D | sha512: 20A5D6B80ADD1A0C5845EA09484338A915D323747FC98FC93411AA08B13313ABF1DEC39FA23458EB222CECBC709B291851ECDFBE6E5A9099D41DDC47C9A8D135
tools\TfsCmdlets\Lib\Desktop\de\Microsoft.TeamFoundation.Build.Common.resources.dll
md5: EFE45C4420AFD9AE9C495A2D2B482D76 | sha1: 46733EB00EDCC0148318F6BD1AFD94FB56BD1E32 | sha256: CCD32024436002528CC880EA8215C7E74B61E559D722F942B3F4CAB84F4E5321 | sha512: E9986F4FE640A7430D9D71303DD2CA944FC909375CAC738CC87E9C63A9D37A611F932CFE6AC37F4605DA7EFC6AEA2CC7FEE034C14E7F209A7DF819CE5520F507
tools\TfsCmdlets\Lib\Desktop\de\Microsoft.TeamFoundation.Client.resources.dll
md5: 397113B4112CDCEC27D4513B792A9A94 | sha1: CF3266E7BDA57174F2C048E8A119E86F14C139A6 | sha256: BF528852ECA1BDF0C18D81CE5F7CC2D8253E97AB9041AD27E23BC7E74D4341CB | sha512: 61D0F9516F069206BFA61F5F841F0299DCFF719F76EA899A27D259DF3FB86ADDFABD6E4910940D4181B3DEEA46B354A0C6EA909576E3A4698D45D306DBECA377
tools\TfsCmdlets\Lib\Desktop\de\Microsoft.TeamFoundation.Common.resources.dll
md5: 47C1A0188C79FC6465BD2C19BB0A8CFF | sha1: 6C6C33613035323C312EA56FED1472E75DAEBBCF | sha256: 49CE6D4A8A3EA8514EAF6FBA2DE9AFEEDBF7D5318AC15474C63182E3BF664415 | sha512: BF4DB61812E8CE8AC08F056B9077FE3FCA481D06BA3CBA3CF54A88A6E7250C18B487F107A7C57D673CC8931D2850D5995FBCAD4D00EF1C1415895D69E03C2814
tools\TfsCmdlets\Lib\Desktop\de\Microsoft.TeamFoundation.Core.WebApi.resources.dll
md5: CBF9639C98A39D9222E3277A8CE476E2 | sha1: E1875B8B032629D6259D034BD87F01394F779320 | sha256: 6E45854CABAD87CE9F9B4099EC15CB77F2A0AB3A90DB33AD3E961B3E9A81AA03 | sha512: 229001A699FFD62CD835D211EC61643CE9C2F09FCC26EEC7807171F3F5D7D6824834D5CF6C6140601D5EC837B923401ACE54A47034534416A9C5DA7964CA7CCC
tools\TfsCmdlets\Lib\Desktop\de\Microsoft.TeamFoundation.Dashboards.WebApi.resources.dll
md5: EDE5B75685998377E23198D4E4573419 | sha1: A86879AD6FDAAFEDBCBC5BDF29CB880A278B1A3F | sha256: 3634B92D70ED3F082496B0BEFF6BDC08C28ED94E681C4EB43ABBF5C66B598DC6 | sha512: D36950253A0C45B280BFAD4D169C385716CAEE06636AF3C2DA46FC071205DDC74DF919AD78D79BA85659E8DE7E0C643575338CE714EDCE40DE9FC040826C42A8
tools\TfsCmdlets\Lib\Desktop\de\Microsoft.TeamFoundation.Discussion.Client.resources.dll
md5: 3BB18024F7AD769EF9420C02726A1540 | sha1: 5233E49891E7F9A4D27290050BD2AFE87CE9007E | sha256: 6C0B3F067DDC3E49AB6BACF87D078CF6F2E5404AA6A4AD3BC69F0AC656065A14 | sha512: A54969325E45E2E53E45DE6F5632841F9CDB47ED848004790468BF4D7810975306593BE30F28EBB1DCC73C220DAAED2C18A856DD28594B74D47736F9FEA0A3FC
tools\TfsCmdlets\Lib\Desktop\de\Microsoft.TeamFoundation.SharePointReporting.Integration.resources.dll
md5: 7F66A0EBF6B09CD8B20B30A63425E008 | sha1: B52EFF0F0D4F019841569754BBE3167FC5D4FAF3 | sha256: 5000B9EF2904C18BE20ABDECCA0754511BA71F293CF31427D98A40FBF69F2769 | sha512: B40B2AFADDDB2FC854B5FC361CB2BA44EBF49AF06C34F92711AAE2D339FB9E8164109A1D0F82446CE03CD5994739477CC18E2A1567E7F5BA21834EFFAD13337A
tools\TfsCmdlets\Lib\Desktop\de\Microsoft.TeamFoundation.TestImpact.Client.resources.dll
md5: 0C9AF1F23DA67F7E5091FE58BCCA02C4 | sha1: 14799E43F8DCA33FEABC4BA1DB7D7CE9BAA6BB0B | sha256: E0F37A525067AD055D622F85FB40EB79EC83EB0FD1D4D9E7398EF9CF7A4C5EC7 | sha512: 275F069535D8282E0BF572D43BBAB25DCC19ABC52C6C7B9D1FC562BA08A9080BCCCDD9959710E5D8EA8D7C32E2C553F43EC55ADA8EEF174113F400D17CDA685C
tools\TfsCmdlets\Lib\Desktop\de\Microsoft.TeamFoundation.TestManagement.Client.resources.dll
md5: 14EDE07AF295F49E8190A87F4E7A24BC | sha1: A63CCB770DCD86E62538CC6804D458055B17A452 | sha256: 92E1B65A5EC0A687984919D51AE13887F163C7BBD7F0EEC6A7FC3FE058387ED2 | sha512: AEA917202772687E30833275A5A77BF0F1C31C91821CB523694FA25904A74C4EB8BD1437242E95977C91BD9396D418B5B9B6C69C25066F773E768CEC0AEC5757
tools\TfsCmdlets\Lib\Desktop\de\Microsoft.TeamFoundation.VersionControl.Common.Integration.resources.dll
md5: B85940106B5F1212D2A1F596A003745F | sha1: F54ECF678DF4B6559A7A39C51C63DB90E1AD2E3C | sha256: 7A8AD8241B1B613405F44B9401427653CB426E7D00B0F4F4119F4726EC17BF9E | sha512: 08A1C4E8A605F5D0EB75324E855C2C882E87BF3D7F635076024F625791D6EEAC795939A70E70BBF24B7C75EE532CB47645B2DAB0E997EC6860966F1134EA568E
tools\TfsCmdlets\Lib\Desktop\de\Microsoft.TeamFoundation.VersionControl.Common.resources.dll
md5: 44A15200FAF60E67A63F658BED884A76 | sha1: 1422E0F9ECB294EC8AD5245B825E7BDBADE5563D | sha256: 4C26D3ECC310CB743E76F967EA70180607A181A462E7198231647CDEF23932AA | sha512: 131BB8BDE7A3398BA3CA36E8DFB1A712563067CAF7FF44006F268FA2B15935A4099E67987E99555CCD06A064230BF93DE52BB93265D0FF84F6507E3087ABAB93
tools\TfsCmdlets\Lib\Desktop\de\Microsoft.TeamFoundation.WorkItemTracking.Client.QueryLanguage.resources.dll
md5: 591BF5BC32EF98D62FA1906CDD3D888B | sha1: 4FF8D84571DBC173C3306DEE8497B00B523EFBC3 | sha256: 5F5BC2B67399FE81A05FC6CA5BC153C0EE2222BBFA4649A07C59DBE8A172A205 | sha512: 89166CA42D9F8F569B15B8B341CF0C942BA2B41F3249AAE80CB87F6214C417DE800664DE438F702A50C46E403DB1DCC14AAC372C13792E7F9F58B0FDFF901960
tools\TfsCmdlets\Lib\Desktop\de\Microsoft.TeamFoundation.WorkItemTracking.Client.resources.dll
md5: 59C2ADFD30A41E7FA02F5B94C0C66652 | sha1: 3224BB8C1E73D827B021940675D64084F2664295 | sha256: 2A8E03EB662E4212DA5889D976B0BE16DEC95F8BA6432B432699A51B0A956EA3 | sha512: 1FA16A2CF20C7FFBB33D87AE7DE204C04EC3A1C28069536D53BA82C71B820553E21DA33F8A20862BE569F3EAEEEFB71727276CA2EF7B5954057CFDF20DBAEB5F
tools\TfsCmdlets\Lib\Desktop\de\Microsoft.TeamFoundation.WorkItemTracking.Common.resources.dll
md5: A380EBA10C8C95DAF260C14B7B4C4B9A | sha1: 2DBACBA63E4B5EEF4C2E8EF6E290CFA5004DEE6E | sha256: 7AB41B14121230C90BE3FD6992120F767686B011BE2734E414A93562FE33C106 | sha512: B9DF89587DA6FFF0E0014374B44463938157B30997D3177001CFFC9B21AE6F598D60BDA51AFDE1F7BC73C8588CE6A65AAD316BE2326A6A16B9B065BCEC19D905
tools\TfsCmdlets\Lib\Desktop\de\Microsoft.TeamFoundation.WorkItemTracking.Proxy.resources.dll
md5: 1AAAE21C526775085CC66FA0393ECFB3 | sha1: 13F2A1EA8D9DDE9DD0899CC59A38E2FF47BE64FE | sha256: AA80201C7B95A335485F88704B3BF56DEFF7B8738142E72E237CD69C9BD3EDFD | sha512: C4E4E655A81E8DD5A6DFF3FA59AA80E751BCC0A44921F0F21FDA215BED82D28CC37842EC48D07EF3794F35F39187A7B7E123CB0E4A2681B9C4E27F9A175F412E
tools\TfsCmdlets\Lib\Desktop\de\Microsoft.VisualStudio.Services.Client.Interactive.resources.dll
md5: 6F08B40DB3B121A6E4FED7971E6761C4 | sha1: B57647D00D01128B04B6031E5F1078DB145B556F | sha256: 9AB9FBC826013CFBCDF2591A9665A1F61CB866F83F1E7418B99878C09B5DA8C9 | sha512: 2B2BEAE1916630170834809A221740B43CB5534F47755415991B97C8DFE6D3048157B146966B007C728944602461475806AC54FCA1C27E403A9A1FB5F7E67141
tools\TfsCmdlets\Lib\Desktop\de\Microsoft.VisualStudio.Services.Common.resources.dll
md5: BFE43F4BE29637303F7968D82001B23A | sha1: A608D929F7C53B2CA5ECA1B6C735F901CA2EA22A | sha256: F3885152D69F27DFD6F2AFE8316FDD034C9103A8B35FC59B6087BE04938AF7B1 | sha512: 0A3AB065AC5F030C915A9B86D3405E411659AA15295FAA698FBDC3D28D8BB31980D7E48C22352B3F39A2FE15E77207F0ECF50442F7D6F03B7187C606664BE1E6
tools\TfsCmdlets\Lib\Desktop\de\Microsoft.VisualStudio.Services.Feed.WebApi.resources.dll
md5: 9F5F6F6D184F9EBA642DB4F8D9C6A13D | sha1: D54B924EA8D65F847FE5C2E9ECFDFDA21015BE0C | sha256: B2F88454F3473D484E486CB8D85D6EF07CEA77630077E821F50DC72D9A25D3DC | sha512: 56765A7D844C3AF6E188BEA5E24F0D61ABDE7CDBD03C6ECC906647E023BDD287D7566203AD19D0421E1D34B6684C40324B0796DD09F6FC4B1F58D222BE538303
tools\TfsCmdlets\Lib\Desktop\de\Microsoft.VisualStudio.Services.Gallery.WebApi.resources.dll
tools\TfsCmdlets\Lib\Desktop\de\Microsoft.VisualStudio.Services.NuGet.WebApi.resources.dll
md5: 7C5BA34052D46AC2828E1DED30FD5528 | sha1: 844F36038D91AF40D69481A498A03C17DA8D1A4E | sha256: 68BBD5AA51B61BD0ACF343DBA710667760006CA9D6901269DB8E2A47FCB02025 | sha512: 2FD8DF6FB42A08EF7D274F94A2B6EFD6160BBA39069C979FCC4A6117F619B82F09AF856418AE23531F20E3F3660FB8248E5BB2FE014970EB0AF058C0DE666B58
tools\TfsCmdlets\Lib\Desktop\de\Microsoft.VisualStudio.Services.ReleaseManagement.WebApi.resources.dll
md5: E14B421CB8EAD3520106125BCB8329DD | sha1: A0554075FEAB21063A4A8297777D580BFD19511D | sha256: A1E3B9873CE3D5F1422565AEE7D663E0A5F47D000574FF6E09D8BBAF0D88E433 | sha512: 1EE1AA6FE9FAC669E6C233DD4C526BB534C8AFB8DD961D9045D1A2D04E607C8189741F72D452FAD6942670B5AB2396A13A86300FD7132FEDAFAFC78B8C68C8D3
tools\TfsCmdlets\Lib\Desktop\de\Microsoft.VisualStudio.Services.Search.Shared.WebApi.resources.dll
md5: F92A62CB0F78DCB7A4BD3362084DBA54 | sha1: 65C8388AEC23DD274DA4CA76504E899538F19779 | sha256: 9A8738ABF828056A0DC2F50C3593403AAD559E936283CB715C114A38DD997805 | sha512: 81D57A8CD2A279F280194E5B4B2535D6B38799B8F645B3FC615B59550CDB833049506483572FA1157A8D7A8C26BA39B33AC6DDC4630EC5AC4432CBAAFD56472D
tools\TfsCmdlets\Lib\Desktop\de\Microsoft.VisualStudio.Services.Search.WebApi.resources.dll
md5: DC188C57E81C6171E4FD88DAC556B4F9 | sha1: AA78A57D6F40C7DADC77E56D369C218C11E90141 | sha256: 2433551193E6D043D235AF7122CF7436424E7FC4FA82F7714C56D3742570CCB1 | sha512: A3E575C17A48849F56C86829E15A4888E6A8EFE337A912839CF26488FA49D086B4FD42F8FC9B0EC512EED328F8F2EC1F83F332D9AEF4B8D21D615C0ACCBBB822
tools\TfsCmdlets\Lib\Desktop\de\Microsoft.VisualStudio.Services.ServiceHooks.WebApi.resources.dll
md5: 00999D59757494D8CE06F97C4C44DFD4 | sha1: 547642E845A511C6AF18B59A0F71AE3E4B41E3C2 | sha256: AA5D37B89EF9B46B4F7AD455E70844916C6CFDCDFF1CC716CE240EDF46AAD0B7 | sha512: 6E52FA481E546DC8D11018FD64CDF9B9D04B621E353065CBF4CC3B27A88AD408B852B0FC7E8FE1DF8A00A77E1C02F8E58AE1B747F6FC55B5C84B1BBB9C570E8F
tools\TfsCmdlets\Lib\Desktop\de\Microsoft.VisualStudio.Services.WebApi.resources.dll
md5: 51E68E7434459832E1C99149622EABD7 | sha1: BEE2F321BF869457F4ED06509228A2C1AAE770A9 | sha256: B9C8A78719676E4D84E42BC432A15DDEF92419639DF0B7B8A81F61722C4B08B7 | sha512: 9F277C7154F98C1F37CCE9DC17A276877A285407AD337C286F68ABCCD28D1C6CDDF5D598693395C72B0FC5D8B4DDCA2B3680875A69B5C274C94AFAC49841726C
tools\TfsCmdlets\Lib\Desktop\es\Microsoft.TeamFoundation.Build.Client.resources.dll
md5: 513A5F77E043D8B6A295A38900BD6911 | sha1: 3CFF814B0004DA3867BF6D26C65EBDDFA625B7D6 | sha256: 13FEF1F8E4EF9118CF9871D23F8CE999F29A1B1A07662BBD5580E134AF7A6DFB | sha512: A94183BA12782D0C4C550944F7E4025D6F7C449921A59EB801666993D6423A96648AF6274D24411092B30E229A0ECED7E0A35E021E55B18AD757570079077655
tools\TfsCmdlets\Lib\Desktop\es\Microsoft.TeamFoundation.Build.Common.resources.dll
md5: 58784179E3EB77B51257FFE4516F9967 | sha1: 5CF51EBCB511BFE5137C4EFD7349EC5E4F7840E1 | sha256: 36C5EFC529C9ADE8E7EAAC329857F0D0B2980D0D2D55CB2D49FBFD17CD6E6B36 | sha512: 1D5B36EE9109CF5A4B479948D5F843B083AFC4144CBD13D148654BF2BBB1B8B0D06356A38590DBA2AA6E20B7A4462D28EC0B36297E7FDB638F8535769D0AE34C
tools\TfsCmdlets\Lib\Desktop\es\Microsoft.TeamFoundation.Client.resources.dll
md5: 9230EAA20DC4A7BEE9CAA6DD8382F453 | sha1: A3A1ABC7C05CABB5469EF15CB604461DA7345CBA | sha256: 2E8A904A7155CEFA098ADE46EF169B3FDEB382EE0DC009F6D0F8F656078D3BA1 | sha512: EEED7833F34CD3C6BCDFE9721A7987530925DBF74C9FF1D1EA4113A34757F34BDC58D6CCD803DC4F3498C4A15302A49DBB4206A6F4EFA3D917DB86BF2CDC1E0B
tools\TfsCmdlets\Lib\Desktop\es\Microsoft.TeamFoundation.Common.resources.dll
md5: A385765D93680AC9D05FB9AA27ED9FAB | sha1: 008B8D4A8FCFADAC03E83D6E8AB8FCC938AB08C8 | sha256: 3DB8190A36833831561C8D9EE8F2721A7D68887F6885BD716F0D4AA721A51816 | sha512: 437F767EFF1331CF5B9B0ED6B316258A1A54ABA900993DDD62D56576BA389B931F44E653433E5D058D437F6D78E4D337F941BC86E9272CD6C5F8846308ED9509
tools\TfsCmdlets\Lib\Desktop\es\Microsoft.TeamFoundation.Core.WebApi.resources.dll
md5: ABC664110F204FE0DD74915D238EFA92 | sha1: 008A176DF2D0518167D6A4926F1B5C0CC266A56D | sha256: 40A059108C63CA95E64B9D7346C736C564DA572083A6ACD15EA55DE04740EF36 | sha512: A0967D74D05950126BAF292F83AFE81DFDE3EC12343B1BC65081BE77B4D0C2A5DD42DAF989DB30EEFDDE7AE87DCE3983B8D9CA44B6197CB13D0E38FF9CA1A42F
tools\TfsCmdlets\Lib\Desktop\es\Microsoft.TeamFoundation.Dashboards.WebApi.resources.dll
md5: 4940C0DDD967E1941E0624A657A36BFB | sha1: CB1CA0E468C8A84B7FB8A2D5F06202AC19C7628A | sha256: D4B3B009AFF2B8BFA65A28018732F350766EDDB9A13FCD371B13859C50687D97 | sha512: BB565120ABF64D6042424ED4D3FFA4A36A9B07F6EC106C3E305B2726DE240831FB39C7D7677CF3A3829CB7BFAA0AA8CB6BA1DC3093B49CEBF8D580351941839C
tools\TfsCmdlets\Lib\Desktop\es\Microsoft.TeamFoundation.Discussion.Client.resources.dll
md5: EF44620835D973999599935E9B0BF48D | sha1: 956DA539152597735F018C994F4B2A4A054F285B | sha256: 25BA5760ADF5287A13659D1A46E070299A5062711F8B1F5663808B131756C85D | sha512: 6780F77A1BC32AEB876F02CE11F0A6D9AD67E9AC07C49D346AAFE4209327C0A2CA0B48E5FCC52238C0E2F2EFA13FDAB37E3CD9728AB8FC500D921D98935CD900
tools\TfsCmdlets\Lib\Desktop\es\Microsoft.TeamFoundation.SharePointReporting.Integration.resources.dll
md5: 861F1C9A972A898AC5A495228D8F607B | sha1: 961BC64460C2CF0F793D5ECF7F4DBA86391D2F05 | sha256: B765F99FE4C7BE03BE844CB3E9BA400206CCC73D2FAA3475D53D46690FEA2C7A | sha512: A10F4DDE1B4B4CC2976FFD60E827A4D85EFC1718917ED5713343B563CCE78AB8550AC40D8B419662AECC599060F0CAF9AFD4CC5DE4BC00E4B9B999B73E5C029B
tools\TfsCmdlets\Lib\Desktop\es\Microsoft.TeamFoundation.TestImpact.Client.resources.dll
md5: 0C67754E6F5EDC583093A6982F81447E | sha1: 46700F7E7FA9DDE95923E6130460452DDCE71B10 | sha256: 3A355D557089E4EFBF305887E9ACCF64842976BFEC3EBBB147E9B7B50E5B0950 | sha512: 17BFE90B8867AA03233F089948AF57652F4FAE4DCB2CAEFC1A669B8CA396CC40ADAD64462B4E571C0143560F4E7F84DF41122698EA55444D27E264A179E77A49
tools\TfsCmdlets\Lib\Desktop\es\Microsoft.TeamFoundation.TestManagement.Client.resources.dll
md5: D1D6E1C3CB04C1B397997C73BA45EDC5 | sha1: 106D200D772EB68E33906F15F4E0978D96315672 | sha256: 42F1D6E248B28254B571F36B9C643AEBE7C7CFDBE56B3E1152B854476C5D1C5E | sha512: 15BE6D0FF0F840B49F586674BA025CCC4D2F77605D8D76653FE441506E93F001ECCCD011E194BCB2CBB5F533147F1371977B570726590D051F657E44490E76B6
tools\TfsCmdlets\Lib\Desktop\es\Microsoft.TeamFoundation.VersionControl.Common.Integration.resources.dll
md5: D1EE36968DF16762B75FB74CF575D52E | sha1: 1191FE087B518102D68A8D575C59D145FAC25E87 | sha256: FF61FAAF462306AB0A705144D321DD5E998B1466DDD7BC302F08E17CB70AF391 | sha512: AEAA98A916CED9888770FE5B222C796CCDC76A6612C9FAFC0336D31DCDD5DCE6B3C1858D62C02251F81495A1CAB6CB84CA934C5544FA98F00C4E5F4F3F1A7647
tools\TfsCmdlets\Lib\Desktop\es\Microsoft.TeamFoundation.VersionControl.Common.resources.dll
md5: BDA5E8364AC35F5A66CF692BE72BABB0 | sha1: 1984347FC50C606FE9C088B8309BE248612F989E | sha256: E7A132E7D6B976A167E02E062F6FF3697328183CDC1994A09F493E98263E800E | sha512: D3A3B6392A38BC6BC315680F7115FCD729BBCAFAA90D830D15F7CC857D457E42577D099AFDADF4CA2FB1594E01B7A21FBC99082F7196D9AB09F5AD44CE00BEDE
tools\TfsCmdlets\Lib\Desktop\es\Microsoft.TeamFoundation.WorkItemTracking.Client.QueryLanguage.resources.dll
md5: 5FF2DDA814E6E2B6935E2390582374C0 | sha1: 7A5C5932FACA56E2517EFC3BBD4BEACE8677C047 | sha256: 2C585CC12F75AFCEA676DC0A8FC32E772C233066542E6ACC0DAC5B70D77D918B | sha512: 3B4199F5FDBB488851D682D38EF93CF8023BB5AD6E0E8348C60EDA8B22F468D194849D2642BD1CB09196527DBABF2D2C75209DB6AE2AADE9C6E09CC415000FEF
tools\TfsCmdlets\Lib\Desktop\es\Microsoft.TeamFoundation.WorkItemTracking.Client.resources.dll
md5: CA5BB853654B123FF86380559AAD2600 | sha1: 90DA505E1DFAE1E9DC437EE465E270F4F5FB5FF4 | sha256: A5ABB541E4D60864BDDE519E4E47BB5739E5C1078B43B8B47A3E29A0C7D9A57F | sha512: A5B78AE01D0817B7F0992F8FE18F581539133C76B03A191F4CACB990F498820CBC517D6A9DE2F181F0443D317A1C22C7579A59F281B2931F0DA367B99FF8E552
tools\TfsCmdlets\Lib\Desktop\es\Microsoft.TeamFoundation.WorkItemTracking.Common.resources.dll
md5: EE25725F3B3CE6FB30EFC160D5A2BB8A | sha1: 54BAA417EB6D19B841B3F6F9FF52AC645DE3C282 | sha256: 0B635D18B00FE8582176FD89FEE4911F73FACCE9E5386A71ED6234CC92EEFD05 | sha512: 754557236B54998EC8A2D1D594EE2C437F190E61754234C95D17D7A7EFDB02DF5285FF42D4818C5F8F83493BDFB9960EB16E2FC165C5D079E1372AC6A68054FE
tools\TfsCmdlets\Lib\Desktop\es\Microsoft.TeamFoundation.WorkItemTracking.Proxy.resources.dll
md5: DF0DEED258F52A5E1648217242C7A4FB | sha1: 8C7428154E3C312A00CA704385E6D93F0D7ECFB5 | sha256: A077538F3C790A667E0C149864821D600EF668E105F05D539C691260E916F921 | sha512: 1765164E3CE59D1020AF7D5907DE05914C610DEAE527B200682D8F5DD9486B5398527ACB8CAE01B96A5B823453AF9FB948E0019ADCD5BEFE27BE6D78D1144524
tools\TfsCmdlets\Lib\Desktop\es\Microsoft.VisualStudio.Services.Client.Interactive.resources.dll
md5: F62A5AD073E984331A32947047A319F4 | sha1: 172C30EB65C809594337885F307400F9B64C5BB9 | sha256: 0DA6F9F45E96C41AA724A38D455B83253AFAD653C50DD2362E870217EC34B962 | sha512: 186BFE214E2642C965F809ACBE970D15AD3590EBBF613E172AA394069ECF581E2E3D76895A826468C908523DD68A6CA8D17A93AAD78AA6620297E1740B7A3ADF
tools\TfsCmdlets\Lib\Desktop\es\Microsoft.VisualStudio.Services.Common.resources.dll
md5: 973FD54FA13EE4771E99BCA20AD928BA | sha1: 64F6AF1163C4B20A2FC474DEDD3926800C4AC9B9 | sha256: 42D74FFC97BE86058A1F2EAE06BE5FE2C89FBDA5CEA3CA503F5406FF6E97B69F | sha512: 7ECFB1CD0CDC9F62ACA06F6BB9DD896EF87AF41BA9DF5ABE6BF1F607F6B89531ECE1C93C087B01E4E310B07FA4A64B560DCE136869B88944EE3C00ADC128CC6B
tools\TfsCmdlets\Lib\Desktop\es\Microsoft.VisualStudio.Services.Feed.WebApi.resources.dll
md5: 326B36F55350E31C69ACC2C05BA6A2FC | sha1: 3E43C29C8331B46CF5CAB69036C7B0C4769824D2 | sha256: 89AEC79F4DC40C3BA02EA7F0148DD9A6646EC57B1599984D543D5D062D673FD1 | sha512: C9CB9D15855752B2A0A8DB7C9BF6CD89E2183151FC031716FBB46F0F514F6FED9FB538D1020679252CFB2E3544798099EA7E5BDB54EBE2ED6EF3AACF3C93A02F
tools\TfsCmdlets\Lib\Desktop\es\Microsoft.VisualStudio.Services.Gallery.WebApi.resources.dll
tools\TfsCmdlets\Lib\Desktop\es\Microsoft.VisualStudio.Services.NuGet.WebApi.resources.dll
md5: C0201ECADB9729E334A2DE29FF8087EA | sha1: A8F2E36BBFE10E9EDE3FC3E0355A6EAB5EC728D3 | sha256: C28618CC86AD4CCF1571797D45DF32C0090EF77036F0923D5956165F7F121076 | sha512: D233E2A824B14C2A96203F144925A8B1FF3EBC8BD0FF5F9543AB91E8AE3BB5F77E7789E4E67B55E87606A1169BA4FBDF000EDBA37AB220F637F9049925978794
tools\TfsCmdlets\Lib\Desktop\es\Microsoft.VisualStudio.Services.ReleaseManagement.WebApi.resources.dll
md5: E16A3AA57D8673E3CC8B848C52E4BD49 | sha1: 873CEB7D5691A736B27B63B141967E0BF2E3B654 | sha256: A7934C0F5E9E95CC34E12252A74AD7232D6DEA9332BD70CA808769F76F502849 | sha512: 98E9A186740BF944185698F03FD48403E8BB9C73A91E9E617D78C99A0DDA8DBA3BBA1F096B1518B563A933829911865AD013684FE0616927359968B9AA9DF8FA
tools\TfsCmdlets\Lib\Desktop\es\Microsoft.VisualStudio.Services.Search.Shared.WebApi.resources.dll
md5: A6B96780B2D97BC1D458AE3001CA7D48 | sha1: 37EA9C2798EE2EBEFFD538DD814D2F8AE2309851 | sha256: C55E4ACEC6F5F714E3F4ED9D17856BD408C21D3053B4F8820F4013FC9C6CC4FC | sha512: 39EF93F2ACDE32F4D5524AF6C6582A82A6A31563D8B4433103FABF3E222529593D116375E0284EC1B2BF69ABC235A6FC5FDA2C5E1A6FECCE2DC7CA0715F6D93E
tools\TfsCmdlets\Lib\Desktop\es\Microsoft.VisualStudio.Services.Search.WebApi.resources.dll
md5: 0125BB0DA387ED2B3FA041F6C2E809AA | sha1: 500CA0B7C44641AD4FBCFE9D471B9754BECC3063 | sha256: 39DDE19A7556E691178E590D23F14A1371D1FCEDC6C16727F11F0015B15C3031 | sha512: 923186D417D58BAFB1F08A711936A109B09D8F962F2DC96563419D6A5BA4B019B9A9AFB0403C58BDBF08A3E2CA11B026E66F7C2B5A483F0D95360E9B1E1E2034
tools\TfsCmdlets\Lib\Desktop\es\Microsoft.VisualStudio.Services.ServiceHooks.WebApi.resources.dll
md5: DB7340D9CEE8CD3CCE0C60B747F2081C | sha1: AC87A78B5297269304DC8E122511B01D78BE04AA | sha256: 35B08FB01C2EE5F553B4600BDDCDC261D86197B7F18968EDCD767A3233E2CE97 | sha512: 6597D6B35A4F16A66CF1DCCF89AF900ACAC479B5222F6F3D32E5B2438B1D75071E28E95C0112D770B033DCE242178D08296DB5BD0CCF3D9FD8B121BBF85327B5
tools\TfsCmdlets\Lib\Desktop\es\Microsoft.VisualStudio.Services.WebApi.resources.dll
md5: EAC9EE996DEABB4AB18323C90EBD50C6 | sha1: DDE5B598E819998593B4B08C9D7037F695378478 | sha256: 110A5A5D2A693980E0DEB05C6504A0DD71C3200C9C1AF4911C7C813D35964EBE | sha512: 87D95DCFE2C815661C5CC4A7174B1F8A55AD31E4DE2E3AD69B5E50D455BFC56EB3D35CD69EB89E52C9881B64B538B936270BE0557D8CD10A4114AA7569508B34
tools\TfsCmdlets\Lib\Desktop\fr\Microsoft.TeamFoundation.Build.Client.resources.dll
md5: A73315F7EA49D0E59687A5F9072124B3 | sha1: 73D7D2302787D0F9C831B49A12BD78A8DA9F6C5F | sha256: CE7189E575A0E377E3F215C3721234E7F56552B88F0A2A0AECBB903C1ECAE937 | sha512: 876913A43E0AE2DC632F81D1ACCC0DCB757A88506A8705BCED158A3524B32CAE7F3565933CB5D5AED5FC37F5A8D3BBA08F762A5DFAD54652DCF5FCF117019E6E
tools\TfsCmdlets\Lib\Desktop\fr\Microsoft.TeamFoundation.Build.Common.resources.dll
md5: 3E24D78F7582820B53C2BD3626D126E0 | sha1: 21C101BB9C4AD89DE954B6CE2D6E41D34B5ED9B5 | sha256: 709030968B292D8E5136E6EA0D0C8F384457A768E6CD2FCC0FFB8899E1DF7222 | sha512: 657C54B54CD885DB48F91FFF0B8315541051D34DD1788A59739976E13C1011590058BD24315F65DF818E0D714C5B5613B527778A4116141A95202E531535A8B7
tools\TfsCmdlets\Lib\Desktop\fr\Microsoft.TeamFoundation.Client.resources.dll
md5: F8845645FA322EDF1C1AC3AA3CF7431F | sha1: 93B99E2782856F28D48D525587003294123920ED | sha256: 48FF9BD7516B6A8E86C7F54A3677AA499EDDB5BDAF9AA9FE03EA49EC21A26B1E | sha512: F077ACFE1605E6A7F9C16C87750FE14C9458F14E88FFE25B8F6C4A67A47FD22A20C298757DB9C2142F9200BC09640771A1C578C86064905F273343B270893640
tools\TfsCmdlets\Lib\Desktop\fr\Microsoft.TeamFoundation.Common.resources.dll
md5: 0EF2E80A5575DEA7D221599F45BD0D6E | sha1: 3E5FF9278DB31F7230123548CFC6504EA3F22C40 | sha256: 748A8ECFA6453B6CB0390D23939C885167D234F47BC056A7EE070FCAB147E87B | sha512: 1C4BDFEBBDDDBADA998E695804946FA0BB154D5EEF0958441AC004AA36F043DC475B247A7EC8195E642B254FA20922C45BA1CA1C2ECD6409C5FA14509302D51F
tools\TfsCmdlets\Lib\Desktop\fr\Microsoft.TeamFoundation.Core.WebApi.resources.dll
md5: FC0E45DD5C258F949F021F981BC0B769 | sha1: D6774935679DEA8B16907DFEEDE5484D43668C97 | sha256: 593315A361F9245863CB2BC98D14A60151CD889E1FAE1B7436DF8760CD70DD5E | sha512: 63C2D4E4510AEC2B8DD2F134EFE4A90EE9F165733627620D489EE4CEFA23673B2BD36C5EF9E5A885BEB120A157AE6EE904D807D0DDE8AECE160974B2F5821B8C
tools\TfsCmdlets\Lib\Desktop\fr\Microsoft.TeamFoundation.Dashboards.WebApi.resources.dll
md5: 0CEB4FFDAC023C9327ECDA484E6DD358 | sha1: 8BD293ED8216682E385D6567D94D8B4820820EF6 | sha256: 6897CF3F22BC85FEF8D2E4B10DC38F66BBEE69F57FC431C3606B2A4FDC11F8EA | sha512: F03509176BF08B431363B40D65617789D799AA5A9EC3A54506F8C718DC7B0100F8D80A7052FBAD3BFC6024EAC10675CA69592C40174EC8810536C6C8A0D48A44
tools\TfsCmdlets\Lib\Desktop\fr\Microsoft.TeamFoundation.Discussion.Client.resources.dll
md5: 743D6E328D6B9DA3CF30AD131A5B089C | sha1: 1E7CF00A5A0B1D3F871523B75BB471DB2B659296 | sha256: 1918477C8200D396413B2B57D08E6CC7B400773BADC164958828AA6A321F2F9F | sha512: D2296F8D9ACCFBD2B90191542721BDCD6618A775687F4973659BCDFD03AEB9F73A17A739C32C4E1AD8704214B05B0E466BA8296307A0228F2CE32222321DA525
tools\TfsCmdlets\Lib\Desktop\fr\Microsoft.TeamFoundation.SharePointReporting.Integration.resources.dll
md5: 054E56EDB76C9AD31CCAB72AE116D5A0 | sha1: 29751800C1BE00898D613AB5673C6B42C8B5F373 | sha256: 114DED4CE52BB3D5E726669F31B66862EA72B6A5811AE4B1A5208D5C18BA6C4E | sha512: D329604A0BC1EBD8EAF01CBE4465591190FA1B8404716429A45BDB17358B5585279795E92187E68095145715478230D481536D3704EACAEE5CF3E1D0CF43B06D
tools\TfsCmdlets\Lib\Desktop\fr\Microsoft.TeamFoundation.TestImpact.Client.resources.dll
md5: 907BEFAF600FE027351A3E906446B7AA | sha1: 935C7EC1273434E02CEA6D2D0D05902F266B7288 | sha256: B3BA55448FAE0613816D081B2158C10053BC33766738D27CC0E0C92E0AEAA3AA | sha512: 72E551AAE2742AEAA07011DA5E459314700AF68625EA95B0038ED576C63DE7A30D6B1F0B4C19C855CC156EB9C54C24A31FCD1CFEF7AD1F9237B81E39E88ECEFC
tools\TfsCmdlets\Lib\Desktop\fr\Microsoft.TeamFoundation.TestManagement.Client.resources.dll
md5: 3F75EAA19841B1908A15CCDC9D32DCF7 | sha1: ACAFD891103D0EDEDF58D08BCAE2A6DC6953F63B | sha256: 9B70165A728FD1FED54AEBC2832C29B0E16604C8E2536F36E6C082910EC2BC06 | sha512: 39D9A293A9594AE96622DFC49684D85F639E1BD980F7E5242CA9F9976CF6364775C980CBB7A8CD0BD647EE0909B42262938AC032F8EF9A255E8D470424E99517
tools\TfsCmdlets\Lib\Desktop\fr\Microsoft.TeamFoundation.VersionControl.Common.Integration.resources.dll
md5: 50F2F7495E16254D12D9A6A0B7243353 | sha1: 6CDCDD6621F3EFF28E92C0B8A67503AAFD585119 | sha256: 3E06D38EA51D1FF666C1A23E3F4F39333EAAA631F50D87517E9D4B965BBA0462 | sha512: 9D740B227A5E15C12755CD2E0759756D63856D4DF9DC3B4BC4FCA9DFE66197D4D8214998C7A2B379E5785AA3618D04139789903B45E117234FA685226204CDF9
tools\TfsCmdlets\Lib\Desktop\fr\Microsoft.TeamFoundation.VersionControl.Common.resources.dll
md5: 5BBB2BFF4F37560DA28E2FFADFDB5592 | sha1: 188ECD95FC989B0DCB799B3535D97D4DA1679BF8 | sha256: 8E6F625B4CF870D968A1A3E5AD6B93B9B0030599FCEDF2F26CD3D64B40E0164D | sha512: FC60004058280DEE31DE7414CB2527F2438E0D440C2562B964F150FEE42DFD6071B3F634D1E8F2790EC8643C653691570D92A0D37E6BAD20136BA9B0959BC154
tools\TfsCmdlets\Lib\Desktop\fr\Microsoft.TeamFoundation.WorkItemTracking.Client.QueryLanguage.resources.dll
md5: 13AA8B7CF543810E511CABC38B5DE569 | sha1: F1D5D4545C69DC115ADF2A7F985F94F39D480016 | sha256: 22BFF727C50D242F08A8EAA555A7534183F306A57AF2A71FC941E59C626AF26C | sha512: 750880BD7BF592FA0A042425DBC9B830EEF910987C1AA33EFCB184002522FA1565F29125183E18277EBB8940F2B3FA1D8912CBCE723C2EBC5B0893DC0B5956D0
tools\TfsCmdlets\Lib\Desktop\fr\Microsoft.TeamFoundation.WorkItemTracking.Client.resources.dll
md5: 64E83FE90152AFB0AA8178970D534FD0 | sha1: 9AF98852C4CB0B1FFC0A8403B0FA59115FB3926C | sha256: 7F4690315D0CA7D2F6573125B4D648E1CCC09FD110CBE8F28C187ED79C20F7AA | sha512: 675E5B9F2DECD434A0D238BC8768896E557723D2D89F4AE8FB780D0EFEEDEE27D35F8C69E1B97CA1693BC6C0A73D7B43A3AC0395E3E2D8E0F656D39337A07011
tools\TfsCmdlets\Lib\Desktop\fr\Microsoft.TeamFoundation.WorkItemTracking.Common.resources.dll
md5: AFEC46BB70D96A8EF7B5753C4564C80A | sha1: DD8F2899C6D1295F1E5E6D71A80154B4FE6C8630 | sha256: 16BB4192B7F35F596012EB6F91C6DCCCD840A016DFD996D02765B27890622D86 | sha512: 60E71F7F40C343AA90658AEA4C4A00AE1CAB8CEF78A2B79B5F1A1FD0AA48EB2DD1DE7A79895782F21679C385D75CBEF17D00C3EB82EAD3A5E989741DA7DE4504
tools\TfsCmdlets\Lib\Desktop\fr\Microsoft.TeamFoundation.WorkItemTracking.Proxy.resources.dll
md5: DE828A2E27DA86D0AF2AF73253772D19 | sha1: 6E3E8FA1FD369485C6F7EC3DFEDD104B9D0A1258 | sha256: 33BC85CAFFB34526816F00AFEB43624541739F668E702DB18320CCB045ED70D8 | sha512: BA26C45A6BE4B6785A8FD423605C79B44282BB0823F6524DE98B1067D7DD16A49DA24EFC724D5EF9F6C90D411D7FDB311BA46D671FA5BD37B10C407C6EF65243
tools\TfsCmdlets\Lib\Desktop\fr\Microsoft.VisualStudio.Services.Client.Interactive.resources.dll
md5: F5B6376B8EEB28A0642362AD1DD8D550 | sha1: C033256B1AE48B9C320213013053436479BCFA97 | sha256: 01710442A6E601A20F814AD5D57219C40C62B9BDD8B5F06AB347FE1A0B8E529A | sha512: 581628136BD8E58179594AD173877D219ED99DED06023EBE919330719EE667E8DCAA3603020D2D24B96A2F212B16629AD9E919CDB1B272B22D4EC276E0023E11
tools\TfsCmdlets\Lib\Desktop\fr\Microsoft.VisualStudio.Services.Common.resources.dll
md5: EEB55E5629B151E473E655C530D5D9B0 | sha1: F29BF6F36AD747E132998D4DC5CC821F8DC1B5BE | sha256: DAF49FB19E58A145AA179B707467728315B27EC1CD533B099D69ACC43560F382 | sha512: B73C777FDE5C70B1043343CE87C5E9B0708E3AC8A649E0D3DFACC20A4AB15724B0506CB6E6534285CA94BA38AC53DB27421082E810ED63896BC508F4F57E4DBA
tools\TfsCmdlets\Lib\Desktop\fr\Microsoft.VisualStudio.Services.Feed.WebApi.resources.dll
md5: E9D1190E2ADD28B97751265A99D884C1 | sha1: 8E1D9719C5DBD6AEF1FB2049DCD2FDBF12D81052 | sha256: E3F990B41C89E688F0D3C414E7B1D8B664B1B5438B6D9C13D5F9FC83D38F00B9 | sha512: 7EEAA9498781E8AA70B66818BBD306E45406C486ABF04A0C796FDDD3C2C284AE6F6C57B61E9C40307DB6BF138FB994694B0427AC51E63299F684921FD1AF396E
tools\TfsCmdlets\Lib\Desktop\fr\Microsoft.VisualStudio.Services.Gallery.WebApi.resources.dll
tools\TfsCmdlets\Lib\Desktop\fr\Microsoft.VisualStudio.Services.NuGet.WebApi.resources.dll
md5: 385F137300E5B125869142360D781B06 | sha1: A99D1800B202B6081A74F20E4FEC6D9BA6BB9EC8 | sha256: 93535A35ECA4E55D4CFBA66F185EA5F5E5C6E298FAD6937F4EB389FBFFE8A831 | sha512: 896A12B11A1B00F60473FA8D8B198A547E931009C5C3AAF6DE914F939012B1F5466DF7DF0BC53152A32EE41CEE9397D05E98115A24B4CD598553940274025A76
tools\TfsCmdlets\Lib\Desktop\fr\Microsoft.VisualStudio.Services.ReleaseManagement.WebApi.resources.dll
md5: 65F288DE984F839F03EF6EFCBE716107 | sha1: 9F7404386440A9EBE9B029FA51A025387AD76F29 | sha256: C0B3E04B616B9E78D04CC337EB53C6C906040392AC2C2E49C73D2B44F102FAAF | sha512: 08DDC3D14F36D6DE42F48D0338264D5FA17B88DC8F9FF09B149422F6F36CB25C1204EACCD34A5A70FC43F1CC80D4681354389EC94D2C435CDD7F2557BE0D3B8D
tools\TfsCmdlets\Lib\Desktop\fr\Microsoft.VisualStudio.Services.Search.Shared.WebApi.resources.dll
md5: CDF571E5DDDA1CD904839C2687F0606C | sha1: 7FC11BE44748E8827C28E716D77D0A56DCA7F517 | sha256: 1DA1E423F1DC80F62DBCCBC648408C3916749EB48265C0AB31AB9293B5F4027C | sha512: 300D5C1D7FA6F0732CE49C9888804A8C65AD103039D9AA23568825493CCEB6CD04A50D2380D2EAF547E74A9864ACA858B90C00DC9993B17CC273025C80B584C7
tools\TfsCmdlets\Lib\Desktop\fr\Microsoft.VisualStudio.Services.Search.WebApi.resources.dll
md5: 01ACB08B2F3E39A7E2F256DDD61047D1 | sha1: 023CA946CE8952FC3B164738E0E7CBA16A847F83 | sha256: 759308021995B0B2BF52F45F4904AE81455BF17A566DBC08625C8014B0910FD9 | sha512: 535E0724195D7AB19252CBDC166C2890319C0EFFD4A62B9A928F43424CAF288F86F29923EDE4418F1C92E6B207C4228E3D26B2EAAD4FA580A17817B6F3DD54B2
tools\TfsCmdlets\Lib\Desktop\fr\Microsoft.VisualStudio.Services.ServiceHooks.WebApi.resources.dll
md5: ED4A3E97EB42D3CC95829E25FAEBF49B | sha1: DB94F7694CF6613C864F8EDACA0FD49C774ACB57 | sha256: D30C600A152B489B3F989502C74EAE9996C2B4466A6C5D996EC8E8562E7C5908 | sha512: D850E067982BB9F2EAFF0FDF41E032C65CD3F9E061C84FA808B263959626C87DA981A08DAB0A26E03372846FB04EFD7271A8961EB5FE63B42EB38AA67A572860
tools\TfsCmdlets\Lib\Desktop\fr\Microsoft.VisualStudio.Services.WebApi.resources.dll
md5: 4C54A5533DDD23BCBAA62A29F6D2974C | sha1: E0D759AEDA2847CB3ECE8E7E7714968EC14733E6 | sha256: 820305E1E09883266AB04A53FD2DB7BEEA73C3D49A346A13067651EF2970ACD8 | sha512: 72EFDED04E72541E26BC34FD1C99CD78BA150944916CE6117400B6A891F568B14B3437E0C901DBB9AB7FC1683C39527F53615A01E45A827D12B13206D59DE99D
tools\TfsCmdlets\Lib\Desktop\it\Microsoft.TeamFoundation.Build.Client.resources.dll
md5: C2F6FDF6016891CEA222FFCCDCCCE35A | sha1: FFD33D70A4E6FF651DD72C63CDE46F2968706B26 | sha256: 2EEF9303DD5E4404EAD41AE52C9F44DF3290F43790507B58C3B4D11C9891C740 | sha512: 17CC3A787148D41EC3D4C49097A64B3BAB099D5605C1E2CECB74D39ED8179810541E84F12A242C39D41370C7D809098EA1FC5D3CC8DAF1EF022DE81192B5FC4E
tools\TfsCmdlets\Lib\Desktop\it\Microsoft.TeamFoundation.Build.Common.resources.dll
md5: 9484A5C1ACCBCC0FBDCEA0984659FB60 | sha1: 76EC352B0D23123269940BCFECF6FD0F47D008FD | sha256: B4BB4469CA24F8EB23E967DBBB73E3D74FA3AA7FA94599D4A66090087F2032FB | sha512: E9D1B54771362EFA92A93CBB14FCFB7B2B0E87DBA1184065EA63606C747E6CE320594FFAB9697AE57AB71E06BB0134358CFB0FBFDB6F2479216C97288F82253B
tools\TfsCmdlets\Lib\Desktop\it\Microsoft.TeamFoundation.Client.resources.dll
md5: 12331F39AB983670C732918141344D99 | sha1: 69A293AECD1CCED44FCC33662652916C2105F5DB | sha256: 7F288744D058A195DA29A7404DA17146DE14DB13FF1376A22FB94C17BFF91577 | sha512: D37AB5AEDA4E8B221BA606731439C1E628C4C8D763F9E4E8560CFD1606BA166281548A0E9F772A0AD2F73A8A85C0F1CF41F8C6BD67FE4331CB3DE63408E3ED87
tools\TfsCmdlets\Lib\Desktop\it\Microsoft.TeamFoundation.Common.resources.dll
md5: A8FF82F51929BA50851A8836F6CEB9CB | sha1: 02000AEF6546D7CCA0966F9FD053445D22E4619B | sha256: D3ED2C7869ABCDBAF4EC231C7E855EB7371CF6A7C9892EBEA0D79BEAAAB38C4B | sha512: 167B1631580EC25FB842E1FCD55505D5A432347F0E9AC2355C128242BC68BDB9822B14726885F96707C3960912627466A71454DAC3838B56CA0B6FE43C93A116
tools\TfsCmdlets\Lib\Desktop\it\Microsoft.TeamFoundation.Core.WebApi.resources.dll
md5: A6D5FC25F33D97AC1825A12321FE2C2B | sha1: 0DF0DDFA8A85F109C24A17C3FF0FEF05B03ACF58 | sha256: 73D991F9B53C5108071D2959563C308B4529142BB3DD8A75E07F4507BC7DF76D | sha512: 2021482DDC7749847F10FE76371198BE8DDF3F09F9FE3E8BAEF6FE8D95FC6B725A511123817CFE6DFCC2222BB2AB4B3D7A572ED7AE0A7E21C0CFE53CCF0C9D23
tools\TfsCmdlets\Lib\Desktop\it\Microsoft.TeamFoundation.Dashboards.WebApi.resources.dll
md5: ECDD56C67A060437BB44AFD7DBBE2C7A | sha1: FAF9D66124440C1B3E96417ECAF4D20E479C293A | sha256: 2B46921DAE1543223EC9195A23B11BA68C33282DA0D7933F81CA4B5A5518A7F8 | sha512: 74CC5F0D064BC32F70F9A7D4161D74EC9642856E29A46FBFE01FC1D8FB14AAABFAFB7A8FB989FB495D7D90DE5F00A90ECDD40B23BA1485771D0CC5B0E9299456
tools\TfsCmdlets\Lib\Desktop\it\Microsoft.TeamFoundation.Discussion.Client.resources.dll
md5: DC1C25A3929C3ADD64B727FDE44C1A47 | sha1: BF7216ADBC9E84ABC7C74908F4218E3FA873498B | sha256: 6D7ED3EF5ADC177DB813FF3047ACCD9F2D3454DDA286FAC0FFDF832A3CC69D39 | sha512: 433F5602B2D7D6B37239D1938D1FADA338297DDA1CCD49C7EB6A63DD1AC05B9B255DBAC7AFC05EAB66D6D7F19BCDD233079B64A79884D65D1DC99783545D7029
tools\TfsCmdlets\Lib\Desktop\it\Microsoft.TeamFoundation.SharePointReporting.Integration.resources.dll
md5: 5EDE223E3E8D22CA82AA137EA33A8EFC | sha1: CAB8F434A3A664E5503DAB77E88F50617B5CEF6C | sha256: 8CF4FF3DF0D949AD61006E7915A0CC09C3BFA3D8B62A5F57935390AD0288C08C | sha512: 12F63AE8C72EA95283446196BE8F25A25B2C9968A76F512A084BCE08F9EB511E1306C65ED169E3DE634916C020CFA17B838ED30AF1A8730F02560A89880E1825
tools\TfsCmdlets\Lib\Desktop\it\Microsoft.TeamFoundation.TestImpact.Client.resources.dll
md5: EC571B163C0C64993531FF1BC7C0E042 | sha1: 46FFA2624C5AA9CADAA92E7A3ECDCBC0203D9A05 | sha256: 4EE2039DCEAE2C20BFA941B2D142B38C937E5C50A6DF2CC7B945DE3AFE8C5E2D | sha512: 40B125E58D8803618BA5CFCC3CF6B85EC307E6228091E122D65E8EB7C346C15BFBBC70554E9222AD5AD639FEC7047CD397DDC9B98392C72A30AFC251D4B4BB8C
tools\TfsCmdlets\Lib\Desktop\it\Microsoft.TeamFoundation.TestManagement.Client.resources.dll
md5: CE67FC1FE02CEE667AEA41324CA098F7 | sha1: 9EAD0338073278E292AA55CB18EC3383995ACFF6 | sha256: 035760AEC0FE170268E5D0EA7009C1329BE84BD5091B0CC8A734D6370D450C25 | sha512: 84493E635F82AC4BF1129510C723E74F2CCD5119B045E0456ED7A05413E5C6F0C07EDB9A272DB43D7C48A633FA27400BE76B6D27500AB9FDEAC0935008E48610
tools\TfsCmdlets\Lib\Desktop\it\Microsoft.TeamFoundation.VersionControl.Common.Integration.resources.dll
md5: 91C9DAB65B5415368172DA81673C5127 | sha1: 69CCCDE2EE2E791BECD1CD601F802CBD9E80FBF1 | sha256: C88F20F2C3209DDAD445B21D8F2574AE1BBD3521A8D131434DAB56749D6B5C91 | sha512: 6E4356793C343D272F45D07CCA6695A2B2D9C5EEA80B8431FE19BBE3D7DCE8973DC20FA7E5BE0261B022D01BDFBCD7F274A4C2409F3468F60D97519E501B9D25
tools\TfsCmdlets\Lib\Desktop\it\Microsoft.TeamFoundation.VersionControl.Common.resources.dll
md5: 3FF1C5C65BCEAA104D719010744F4439 | sha1: E24B8B3783D18B32623E26905A8FD6622C4CD37D | sha256: 9526B948B11E42F56E14EE4D7151712880DB4BDBE6E68D1B017C4A00DAB3FA59 | sha512: 234E5A64B70B23C008B8D36435B81ECA186B93267091A0431976D66F2DD6746F2A19C21EE702C685C6A51B6CE668C5FC2FF4E89C24354161CB63A62D36FAA256
tools\TfsCmdlets\Lib\Desktop\it\Microsoft.TeamFoundation.WorkItemTracking.Client.QueryLanguage.resources.dll
md5: 77C734E9F874C9C015D92873E1BA48F8 | sha1: B50208AB055702858B992A26C069A7B751E517A9 | sha256: FC40A7276F056107D7EF901992DD30DA2E82E76DC99DD9B2CFBE5F00A7EDCA6F | sha512: C7375217316557C2F9D971E798F63A5E131A3A5A2684E292933DCC361468E9A83D75EBFD9ADD446DB20EB4014A703D7A8B4141618D2BE498491C8D8C24D7F494
tools\TfsCmdlets\Lib\Desktop\it\Microsoft.TeamFoundation.WorkItemTracking.Client.resources.dll
md5: A6F0D85FCB5CC4537419B819F69C95A5 | sha1: 8B1037B77DD542B5D61782454C47C12416FD4468 | sha256: 082F4ADB9AD1E926CC32219589F6F6F31547E775033D6ED94E06FBDE16328F74 | sha512: 07336E6B7D0599771BE6F9B91E2F844DD67A441E9E020E0EEDC7C7CC6199ECEEB956F6F63A0A419BE720B7007858E3C5060439ED352F6EC6B9D5C7EAD1ADCEC6
tools\TfsCmdlets\Lib\Desktop\it\Microsoft.TeamFoundation.WorkItemTracking.Common.resources.dll
md5: 2B42F4429A009E31C945A7E0574A7B43 | sha1: 0988D05DF5C50DB687B05A7B001880562EABA45B | sha256: 24C721874B78B5B44D822BA985AD0959D3E959488483E250A85CE60A447D89D3 | sha512: B5E69E69A551614DB6FD5C7F742E7D502CD23026213449D6E1EB91EC2BE6C45DFD8307179E6288714E823B85A5521A63CCC699CFE0F3805DA9C2460C48E599F9
tools\TfsCmdlets\Lib\Desktop\it\Microsoft.TeamFoundation.WorkItemTracking.Proxy.resources.dll
md5: BB5A20A7ABD61A8538442891C53F0A7B | sha1: 2B9F41906BBC43C09FD21FE633A34F61EBF61083 | sha256: F17720C388B005FA5AD47543E2E8B279BA85BCEED82D8F8B926149A219E46E12 | sha512: 6F4193AC1C5C78748B5B2C60DA1AD9CF821A78F4FD2B0C1FDFF14A159150456AE3150192E989D6CCEF967E9EB16C7806FC9EB59E2DB362CBE57ACBA854045C37
tools\TfsCmdlets\Lib\Desktop\it\Microsoft.VisualStudio.Services.Client.Interactive.resources.dll
md5: 03F4C111540F596D05D701E70A0CE32D | sha1: 0FA61206F29510EE512B8BE7584CAF1BC72C6655 | sha256: 69B4D707EA6CE9F2912984402F9E1BDD8E5D95FBA0DFF8AF2B3E99992BF26A77 | sha512: 3947088B8F4D9BA023D8DE3B71D4CCE3BE407C6FAF538ADE688CD7373A53F5CEF5FF7A28E3E9DBC463E34AA66281E90A0B39F913842550E143A61B6B9BB0A666
tools\TfsCmdlets\Lib\Desktop\it\Microsoft.VisualStudio.Services.Common.resources.dll
md5: 1F64A87AB76AEC8EB31C64C3CBD2B6F0 | sha1: 64756E69BE20E1CBAEC7A8033B2C85BE98AF5424 | sha256: D762204EFD609CF44A8476529D4E1CC4526BE947D515A9A4A93F383916EB4C01 | sha512: 8147ED8FA3CE9A73F033EDAA6C87D3753FAAB2544E79D4E763AF4BF4C159C50B94DBC6862F65B5D506B0823449AD9D16C98B9E24459CB4F17BA1774EA9880088
tools\TfsCmdlets\Lib\Desktop\it\Microsoft.VisualStudio.Services.Feed.WebApi.resources.dll
md5: 20A4AE086E76A4DCDEC1FAD80C78BB3A | sha1: 81D2F25E0F35E0D50D7A04C3CD646DD3B72A17D1 | sha256: 8C8887DC9F4BEC8B73CC71FDF26172BA1777C556271D61F18497C66CD644FA17 | sha512: 3B4B34C1749B222A91AD9AF9DC16B70CFB69826AF701A3E53FB2B9024D31FB680BAD890C77DAAE20E1F1A81F81EAAFEBE463A92A4D5D983C21A33BD2F62C73E0
tools\TfsCmdlets\Lib\Desktop\it\Microsoft.VisualStudio.Services.Gallery.WebApi.resources.dll
tools\TfsCmdlets\Lib\Desktop\it\Microsoft.VisualStudio.Services.NuGet.WebApi.resources.dll
md5: EF9D28452345FF438A8D761536B15601 | sha1: 027B33C6C138BF9EA405C9AE80A86043DFDF95C4 | sha256: 9F399983CBFB25F3C2EDCC287C1F6A2F251174C3F1C2842B1ADAE92E739CCC99 | sha512: F5A22C5870E64FC506194C3D10CAEA084482BF14BFB2A5B300101475A6C9FE521BE109393769AB393135B10836A3F118C7AA01CABA409745EF12784E7F9D10E3
tools\TfsCmdlets\Lib\Desktop\it\Microsoft.VisualStudio.Services.ReleaseManagement.WebApi.resources.dll
md5: 622542CDAA832A1A73B4B855F0F6FFE5 | sha1: 0BBDF284460AD6FE202E462807CC58FA458A206D | sha256: B1D498DD9F90B26D7927935F0D394ED6F7F69534E87659D64D264D1661DF4A71 | sha512: A93841B872CCF161FD32888E3C93A2E8AEAB57BBFDAD009E06108FA6B128475DD72FB53C9A38BFAFE8B2154BEF5C25CD6375D447E29985E33701D4C416911B5F
tools\TfsCmdlets\Lib\Desktop\it\Microsoft.VisualStudio.Services.Search.Shared.WebApi.resources.dll
md5: 3C9ECC79D9EBE46FC477056BAF93DB96 | sha1: 37E2262F1849120ACA35859D8D32457468FE9E3C | sha256: 9422CED9B473ABB4DD3128BEF571333BD147D050A05278E2BE4AEE6B4D0C9770 | sha512: 013299D411FA0CFC60F6216080F98BD472C18CD93D74ECF67EFABD659B3F8445F79A36408C45FB478B974EA4DA6991A21F61DE50C34E9C25C99BD766CEADD961
tools\TfsCmdlets\Lib\Desktop\it\Microsoft.VisualStudio.Services.Search.WebApi.resources.dll
md5: 732F6038FD137CC32B9968184270FB9F | sha1: C6FD4CEEB1F85E7D9C855E3B542F7A3394D71882 | sha256: 16E85E426F6553881765BAD1A7BF033138F812AB6CA92D1929E90FA56AC3FDAC | sha512: E6D22AC1721F5F194DB19DF3CE1269A3E6D2600EFFCCE268219A6A5A4A38C1047D4CCFD2EDF72C97992953B3430AE09E444A19D83FE4F53E252A4B93AE5D50A5
tools\TfsCmdlets\Lib\Desktop\it\Microsoft.VisualStudio.Services.ServiceHooks.WebApi.resources.dll
md5: 81C00B4F45E32AB1D8E296D6C297C557 | sha1: A41751EF6AD9A49D32C1972478D50BCAA72E71BC | sha256: A66E42911EE22FC6DAB36DCA4D84AF779B108A6A087FAFAD60FFA375C9F632B6 | sha512: 793DAC1821733A60D78FEFFB7491F1D1736E91F516221AD767B5DAA6DEA565743FEAE96DD22ED58D701C43342E8E8976BF560C62CAD495DAF9A2192AB902E93F
tools\TfsCmdlets\Lib\Desktop\it\Microsoft.VisualStudio.Services.WebApi.resources.dll
md5: B8C78F9F14A9C862978B102C0856FD9C | sha1: BACC000008229B7A56296E63271742D4A4FC3666 | sha256: 42207921B6CD5A22D89FBAD39B37FC908FA13A2FD78A8E2EFA591BA13E9A24A4 | sha512: D25E32F8F2742DA4A28805FD95A150CD4767BF9588289BA79549C2C8679993845A4908045038153EA7F0F5859A42C446A093500384EBE5389E01E90DF17980D4
tools\TfsCmdlets\Lib\Desktop\ja\Microsoft.TeamFoundation.Build.Client.resources.dll
md5: 3A8D0C3ACC215C8D32C7D0F48DCE97E1 | sha1: 5B0798925A32EC285BDB02585358DC7645FFA842 | sha256: 0F6E7A43C2D8E717797412B3061CC8AA09136A49ADC57500942D480375F6F57C | sha512: B187882BBF1267E7CA7C0091251245FE5A945B1B3E484BA52AA55C09111262B9F37925BED84C55A27788F00F40D1B247822CFCEB5708D827FC77B473207E9554
tools\TfsCmdlets\Lib\Desktop\ja\Microsoft.TeamFoundation.Build.Common.resources.dll
md5: C247C05E57BE6389F9C5E7C038E3D3E0 | sha1: 1650031D96833C3EF8DD38DC308AC6C10DCDC27B | sha256: 923EBB2AEEF7F99EEF93A6473F105DDCFC1D0D8715236E04C5C3CBD49C390DFC | sha512: FE398D7A7E83447EB1D6B131EED843E6771FD86C7FF8A675ABD0DE76300218C58D211045E4C0DCD0011635754680F58A916A82D323C734CE63810469EEA9C66A
tools\TfsCmdlets\Lib\Desktop\ja\Microsoft.TeamFoundation.Client.resources.dll
md5: E86B221609FEE0EFAC9081D32D6BA7B2 | sha1: 186B94AACF837064B5EFC25D1FE2B22391BDDAC8 | sha256: C15723CFD4368FCD5FCE6E688D2CF5CB390F1A7535CD55220297597EAA8B70D4 | sha512: FBED5B44C7F044B86E9CBB514D6294DB9CED2076580701F2399A33986ACC1E2818C22011EB97A379E1151523A08D984C30187844C0D0E1FF6EDD876453A82BB9
tools\TfsCmdlets\Lib\Desktop\ja\Microsoft.TeamFoundation.Common.resources.dll
md5: 696B5B495811F1517D7C84112F428090 | sha1: 43017D7464A20622E5C968256F1634C880B5803F | sha256: F0304FEEEFC283B10DE84415DC61AB45F903DF7001D2CFBD2F75BEF5585596B5 | sha512: 068FE0258110BF265D99FF6CF40DC435BC99038D894D0B849747D09FF678E173B838587C85101C3EB71866B92C327549BCF5EE6D6EE0C05E67C605E650A02F51
tools\TfsCmdlets\Lib\Desktop\ja\Microsoft.TeamFoundation.Core.WebApi.resources.dll
md5: 0A46F60ED77A095E02055E8C6FFB3672 | sha1: 2CC33BA72B4DD81FCEFDC18D0720A0798B940E83 | sha256: C42007AEDE9EC12E53A5C69D602050B24C13555E37E61872B4DD9D24957FAF55 | sha512: 25DB4471CC71DE761098D4259403AD1367684855968649C0EA29763EDE4988417D4824A0E5C7B1031AF1D47802BC39EB538A40219712A14FEBA040ADA76B46D8
tools\TfsCmdlets\Lib\Desktop\ja\Microsoft.TeamFoundation.Dashboards.WebApi.resources.dll
md5: 74A6136D414B89AED6FA1C147066BCAB | sha1: C2C5601766B6B63CA32F6055A35C29FBBEB783BF | sha256: EC07A406C933BAF167B728EF1D793BCA56AAC375D42AE6C5949C45D6E48156A1 | sha512: 82C7F328187DE2D49FF10B1BD4AD2C7E3CE3166CAED67855D22704BF12EE06E125768D512E71C068A156C07ABE8F301009B830334089902E94E9FB6721C3F936
tools\TfsCmdlets\Lib\Desktop\ja\Microsoft.TeamFoundation.Discussion.Client.resources.dll
md5: 8848476502117561DCB8A426ED4C7B16 | sha1: 2B98870AB73B187F2C074407922C216D609CE324 | sha256: BBF9CA5D2D92CBF63EB79CCE6AF2DD37272D8E70CB914CCDC0DDA9B39A0705A4 | sha512: 21DD3C474BE62BE74A841801682630A9BB9A2279FC4CFD529780F195B699D9B8EAC3F3C479A0D95183CB4DD39D979F0934B0536299666D22475261C348B906AD
tools\TfsCmdlets\Lib\Desktop\ja\Microsoft.TeamFoundation.SharePointReporting.Integration.resources.dll
md5: 068D898D079C3921447496ECCB09918C | sha1: 3AB20BD7085EFE31DEC216DA8CB75B0C2E47F710 | sha256: 2EADD9E36599F55B38F6F82E33034FBF05521E236DA5896360F18D0FC757D10F | sha512: 969BB1E87E9ED3807961515FF42D50451C196326A1399C9D63BB860C1F722F350BA569714B000F4AA1CAA1232B19EC29107E2C9125BBDD033D59B446A7D26292
tools\TfsCmdlets\Lib\Desktop\ja\Microsoft.TeamFoundation.TestImpact.Client.resources.dll
md5: F19766CF3178D259B57D2BFA506DEB65 | sha1: AC4A7516046FA924AB137FDC8FB6DFAAB6581224 | sha256: E588CDE81CCFCF44AC120BA709686DEFD6C69E52E25BFCEADB4054E463547DC8 | sha512: 4053E4AB4D8B0BEEE93EF8B0D68E4F6B803BD029893C52478939936623E91C6143F4D88FBDFB536D16BA246A5252C221989013A7ADEF15306FBDCA35CB663499
tools\TfsCmdlets\Lib\Desktop\ja\Microsoft.TeamFoundation.TestManagement.Client.resources.dll
md5: 8D897F6C6391022345389B6B3CF1D5CD | sha1: 0F7AC94C36840CA839E1151FB049B8473AD9AF8A | sha256: 5F9F3E75681BEC49C4FBCB089D9CF121AE2439C5F548AF9E150C1CF132CA8B6F | sha512: 47B33CF6024EFD74BA775AD545A753C0AAF1ED7E9B0BDDD738C61DA35A1BC786C640325869E25D7EA59A5692DD0B07543F4A767F0ED70C593127051584058D9A
tools\TfsCmdlets\Lib\Desktop\ja\Microsoft.TeamFoundation.VersionControl.Common.Integration.resources.dll
md5: 7AE189D1CD5AE10775C9915CDCD48A75 | sha1: D00DDDAD3A1EF019BF3FB06987B8D54E2802438A | sha256: 72AB4D1DA9CAEA5E6FEC574D978077298FDCDAA3F16999047CB9D2B279812233 | sha512: 363B37DACD16610527042A43FC76BBFFE71071A5877869B501B70B043430E47CC6A74FE0765A45ED8BA4466140D05AE1E6A4DD66502903DE34155E1ACCDE258B
tools\TfsCmdlets\Lib\Desktop\ja\Microsoft.TeamFoundation.VersionControl.Common.resources.dll
md5: 282D325B4BFD836F17E311F60D747F0C | sha1: 9B4A1C52B7AC8589AF803947C69A1E84939CF61D | sha256: BB0C9DE6C8EFBA6F4D2E4F10010DE2D10CF365F8A24E7DFF134636E3092E33AB | sha512: F2AC0C796F48EA45E7545F869B55D700E96A27EE635CEE2C349EFB11EE3788F35A31E0F5FCDA44F55C5AC5F1E251BCB705B765103E604718E04331746B99BF22
tools\TfsCmdlets\Lib\Desktop\ja\Microsoft.TeamFoundation.WorkItemTracking.Client.QueryLanguage.resources.dll
md5: 0A6B60291B822BBBFAE91DED474B9883 | sha1: 3FCA553141C8B240B8F1E7355C33BA94F27C8C6B | sha256: 9467E38DA3A60092EDB8D1897E8D77078EE0045606074A7ED83BA84F32FE8276 | sha512: 4F96F1418FAB82A3151EB73AF670E78E56560A2D8A742B41E90110F4E6E6D792E3C9EDC05B5706285907EBB71920731721F6D9620AAF2F02727251A5C7C0DBD8
tools\TfsCmdlets\Lib\Desktop\ja\Microsoft.TeamFoundation.WorkItemTracking.Client.resources.dll
md5: B66616B17A0513724CA5AEA8C6F8ED78 | sha1: E93FD44A00EC7AF347DDA4262EE3B5A983C03DE5 | sha256: A6E216D5125BF97B0FB098A36985D7285266F507D58F4D9AF4375CCA4E4143D2 | sha512: A9799BD511F8663D380709E06BF035F294ACBA86D64EE83F0257B2B776561CD5E302B4CDBEFA235052DEB2FB67919A2553A15685A3F729AEBA28CF53393AF7FE
tools\TfsCmdlets\Lib\Desktop\ja\Microsoft.TeamFoundation.WorkItemTracking.Common.resources.dll
md5: 574963A061F07F192708705DA0538B6F | sha1: 25EF77C604AA9D0FD4E0DA46A8DE7449B78DEFCC | sha256: 51605DF8757D7AB1A7291D00DE137B2E3450765C0EFCEF66FDD1F6DD2832F63E | sha512: 84B4A6D963FB56731C908C0DA5E8B082F178EA9FBE6852C11EFC8423696846E369995D42835A77995215BEF24201B08274A41B5FC876ED2CFDE165F77065EFBE
tools\TfsCmdlets\Lib\Desktop\ja\Microsoft.TeamFoundation.WorkItemTracking.Proxy.resources.dll
md5: 37B38FFDC88B624160CC3711ACF90218 | sha1: 191EC89CE86AA42D9C898DACAF009E3A1216AC26 | sha256: 5D3918D428C04C3709A3D814D4B2ED85936D868A9BE873E86960E26086445942 | sha512: 9ECEC17FD9181EB83A65FAF53D162FCA49F879031875827A6EF2D1EA551297D686528CCCA4A700AAFFDC704F4BD1D698650156D4F82B94C625EB10EEA2903CE5
tools\TfsCmdlets\Lib\Desktop\ja\Microsoft.VisualStudio.Services.Client.Interactive.resources.dll
md5: EAE17CE40B382F6946251421517FE318 | sha1: 0FB1B0FB6F020EAE12786DB620ECFA6C2D358AF3 | sha256: AF11664D62E3EAC800F4612D65481548D8798C069CBD2AC9FBEEB82041DD4C88 | sha512: B97E78D7FCD30A8CB6151237DBC46757AA9A1127C02DD5EB15E941E701AA1B9F3A9A172236FC7E8B634AFD560DAC3479F03091AD698FB79A67FAB3576C23D31D
tools\TfsCmdlets\Lib\Desktop\ja\Microsoft.VisualStudio.Services.Common.resources.dll
md5: 512A278164BB16B8D6E78837E78E21DF | sha1: B63F229712BF6B9D512E19AC2BD830D08F90F662 | sha256: 50FE2388FB569FFDC7C2EDACBCBC7554281CE51BA2C1B9DE4D80E0BB8143CC55 | sha512: F6ED281165B12DE205B4AD401197835525AD8CCC01771E61A0BD6FE3FF99A243BE84D6F3593DE4102BBC10C7A42FFBD23BB405F46B5F6BA20EF05F043902A0D4
tools\TfsCmdlets\Lib\Desktop\ja\Microsoft.VisualStudio.Services.Feed.WebApi.resources.dll
md5: C322C82C40D90C2CA35A4280B2AFE949 | sha1: E0DD52F73E1978F3FC5F6F290CF9F927378A1113 | sha256: 8E6B18C557ECC1EE036D104902F26F72B18FDBE248AB1D464E3BFACFEE1E163E | sha512: 8774EE7F5DD2225B69D6818480C9EB04FF0EBEA232C32472B12AA0DF7E8BF643A53FA6F150B701CD3728C78BA90015698FB451A63E261B64F8B966A0A996315D
tools\TfsCmdlets\Lib\Desktop\ja\Microsoft.VisualStudio.Services.Gallery.WebApi.resources.dll
tools\TfsCmdlets\Lib\Desktop\ja\Microsoft.VisualStudio.Services.NuGet.WebApi.resources.dll
md5: 99279C0A0FAC56470F9C90B8997C28DD | sha1: B2BCB7997168E936FEA7E931EA1D9BD6188CDFCE | sha256: 356E7131D8926D4B2F8F18953503CA92CB66C7D0942C3438CA6B5A7D86C05509 | sha512: D4FC8A5FB76C0EBFA1A609494853F168479659F804F2B926119660A09338C786EA71DCD61F4FB367F48AE66153C072F7DE3812AD4582DD17F15B61D518B9A397
tools\TfsCmdlets\Lib\Desktop\ja\Microsoft.VisualStudio.Services.ReleaseManagement.WebApi.resources.dll
md5: E521AA6238E3ADF8947208965AC96762 | sha1: 7CE3B69E11C81B615DF26E10BC05CAED07A82B80 | sha256: 99841DC855FEA4B183EBE0298B2E50B277622260EF2B21CED8FC8A45F0544012 | sha512: 2B01BD2029BB4ABC8D41031CBE150618E42030B83505190CE8689D403DAC0E67B252FE2CEDAC39790B3BA206F00B2C2E1B8CCF8C6A57CA4F0C4F73A16624A205
tools\TfsCmdlets\Lib\Desktop\ja\Microsoft.VisualStudio.Services.Search.Shared.WebApi.resources.dll
md5: 9C1F8037A18822AA12D309B61C35B1BF | sha1: 759A9069C4BA9527922D705F002FC040B294E564 | sha256: 63AAE4A6CF9CAE3FF0741C87B90DAA96CBD9D265652C459C794E992528C84E96 | sha512: 8249BD85955278C6A7F248C06B078883F29D6DD93373C6A52C505BF180692ADE13BBE8D0112FCB985D7A14A9FF276B7DA871AFA67CB89BEF9A5A9EEC1EA71EDB
tools\TfsCmdlets\Lib\Desktop\ja\Microsoft.VisualStudio.Services.Search.WebApi.resources.dll
md5: A494059969CD170B0284EF66A1C7BF11 | sha1: 27718C9A7FF8DA337B9ED6368CDD97BF6191942C | sha256: C5B8E4310C1AB7CCAC56AFEF614137B2C160A2904E611A09C27065605F9F17AB | sha512: 89AE8DC801E3436E5FB7CAB19CCB7C8EA8481403256AF4E9C7A84376F335FDFC5EDB78D1A8E974CAA63323131071B535247929D84378884075D6D074DD8A9899
tools\TfsCmdlets\Lib\Desktop\ja\Microsoft.VisualStudio.Services.ServiceHooks.WebApi.resources.dll
md5: 1E54E1A510898C24BEDC07B89263097C | sha1: 21709ED104D60171ED58374B2B9E98F1815309AA | sha256: 7677B3D148FF70AF893D2D0EA793C9BFB0697F516C875B229FDB89E6850EF2EF | sha512: 554D138A4F7AC92A4817E6D8B0A1FF2F7EA5EA587AC9354F2D8ACEFA3B52461D22721605DF428A47D47004D7542E5A612A41785BFB3FE225F9E4A61FA430789E
tools\TfsCmdlets\Lib\Desktop\ja\Microsoft.VisualStudio.Services.WebApi.resources.dll
md5: 15BD7A8F83AFE098707009290C9A22A0 | sha1: F1CE6EB2D6A0050E361EA85D0F008A40D9C16E82 | sha256: 24425FBDA2EC7EA6B2AAC252399E85D99B7E60FADFCD342BF2F5C2B9D19E32C9 | sha512: 1B2E89F03EDB1E6651DA7195A7B04B1574A8343C2A447B908FB2B608524B923816F76AAC1C9D0C27A94773BA09C343D4D56825846C2D44CD862909389B8EC4B9
tools\TfsCmdlets\Lib\Desktop\ko\Microsoft.TeamFoundation.Build.Client.resources.dll
md5: 3DF97DCF41449BDF9FD1F9E96EAE0F11 | sha1: 8D8365B05E2923812AFDFFD45CC7878ACC376D62 | sha256: 1C541057AE9B6D7D0EEE5B61E77F0829C558AF5F476DE19381E62FC2D5ED967E | sha512: 4E1B72B9ADDB292AB83724CD36CA3A09CFC0CE57E74407C498909146B17B099926A25D909D1C043AB8712480DFC77D4A8E811F1C670D45037DAC06CEDC171098
tools\TfsCmdlets\Lib\Desktop\ko\Microsoft.TeamFoundation.Build.Common.resources.dll
md5: 642D8D4EBFE5CF3EE063E660DB97B47D | sha1: A67C06657541CD59DBAACAB3527C5BD685F5B10C | sha256: 1E08FA808593949E99375938ABC3A23E1B8CB25EC5131011391D2CDEC490551B | sha512: C9E02574F914D5A944E8BDC121053430259082AC2896969CD1D75991EDAC427FDA1C089A1CC7A0608030895FADFA9F202417D499B6616FBDCE8C50FD563F9CCC
tools\TfsCmdlets\Lib\Desktop\ko\Microsoft.TeamFoundation.Client.resources.dll
md5: A2324832882C4B50E6DD6CCAC1E039C0 | sha1: 0A321035A167A4727ADD6E6D1302081D1C53443E | sha256: 052C23890D88771F198871CD7B34C22A333BA6FD1A32E5A828DC73CFB32C3F5B | sha512: 16342BA903356169361B28FD752856D1A15DEB6B8BB9B5AAD78864F0B7D2A14806AAB2D85DEDF073264939DA1E922EDABD6CE982E022E94401755E5358BCC17F
tools\TfsCmdlets\Lib\Desktop\ko\Microsoft.TeamFoundation.Common.resources.dll
md5: F0194C4CF1499284CDEC2BEB5DDEAE5F | sha1: C3A0EFE0E3ABCB06F28FD01860E312763AF7BD73 | sha256: CDFFA55D688A5D91F3718BE8A8D3CDA01C77CBDBE1379EEEDAD90FBD8EAAF3BD | sha512: BB8B328CB80C787DBB0CFCE3C1962C95231DA01DCA5DFA13BE5A5473332E0D1E9E0A993C4302A2D5256166ABE323C6B400FA5EFEC0A373490516E7A810957DEC
tools\TfsCmdlets\Lib\Desktop\ko\Microsoft.TeamFoundation.Core.WebApi.resources.dll
md5: D61936447F2D96CFE129D4A9E7D78FC4 | sha1: D080F290D9337754F4DDD69E4F5C09CA8355C43B | sha256: 94C32B2D429A928FBA15455492CB7D9378A173CCAFA127A12C3B92CCE4F40503 | sha512: ACE5C253DFFCCC07A5D5851A5FD1DE21DD64D191090DD94CF55C70B4A211D2EA09F4EB017D9803A5A9DE691F878C458D014BE0F30AAE3D5DF89AC7FE5EBD4366
tools\TfsCmdlets\Lib\Desktop\ko\Microsoft.TeamFoundation.Dashboards.WebApi.resources.dll
md5: C4BC37E9710F0249B342C947E08C6D7B | sha1: 90D26EFD44D4D5E817D67239365EF44CF8BAF772 | sha256: 7171B08B8DD3FF159366DDC8049033467E754861D0D8A91AA298CE8724BCD634 | sha512: 6C9F84D2D2A01FDA3415F714A1A958C156D7EAD38D6B4164FA578CF158FCE43B8CCAC28ED8ABB006E3F15A4EDECB0F9383C7159091F104F38C781F68A2774D7C
tools\TfsCmdlets\Lib\Desktop\ko\Microsoft.TeamFoundation.Discussion.Client.resources.dll
md5: 03216D3ABBF3CEE2B275C946C005AC8D | sha1: C9D42B333D0CE5C3CD0DC760AC389B17C1956BA5 | sha256: 7B61D95906977142BF6F7F5776E4217B735F1C13CBDB95483338F0D90B85D1FC | sha512: 31478B8D47A020008CE56AED17CEBF3F1E66D8807C5B80272DAB51DB97652321EF46EADFEFB1B9B3C7EBF891454B238D59848488C0C7DC4A250DF326133DD219
tools\TfsCmdlets\Lib\Desktop\ko\Microsoft.TeamFoundation.SharePointReporting.Integration.resources.dll
md5: EB3E4FD7B935B04EE312FDF9A6477394 | sha1: 74873060DF95637D33AC5E039405AFE1665851A4 | sha256: C1C1FE908241A8BF4112BFA73D981E8828750C86790AB51C39D89ABFB236BD61 | sha512: F4CB2BA1349CC55EF4F0EF6884D43D422A8211A712E29539FD116C4103400634508B979DED7A70840A71A8DC5F34AB1B74249888258B1F1337B4737C585A7193
tools\TfsCmdlets\Lib\Desktop\ko\Microsoft.TeamFoundation.TestImpact.Client.resources.dll
md5: 2334C22D784D5E5032F19FE054C019FD | sha1: DE98E4F30795E4C69AE940AF2B4CC8F256C00DFC | sha256: 813BB93C07B337C5BA101D372B352E8CBF823B34A09D7C1E20B28AA84E72A25C | sha512: C7EC306E161BAE656E27712EE2BC089149A1D1BDC8EA6A2C5991B929BEE06F51E232A3066C88AEA6AFA2011F54A93628288A81EE23524D90383954C6D556B62C
tools\TfsCmdlets\Lib\Desktop\ko\Microsoft.TeamFoundation.TestManagement.Client.resources.dll
md5: 4A41AFD95DA77F9C5FFC85989CD02838 | sha1: 749B28F544409CB82647E08FA51580CD9A45EC01 | sha256: BACD5C1850182A5F362120FBB77FDB4318383F8DFC7BE35B4E4C83947EA349F0 | sha512: 911328786BE82380D3D2DA323BD6982BCC05D75B5B5925F7DC02130E2F7057E4A2B3BDE7AAED97E92CF0BD0010F3DF29AD60A1BDFFC25A2D88CF4CBB19260FDE
tools\TfsCmdlets\Lib\Desktop\ko\Microsoft.TeamFoundation.VersionControl.Common.Integration.resources.dll
md5: 85641603B378E485736CF7F6191D89B6 | sha1: 9015C5A1F9A614858E72BD1E61326604A81AD60B | sha256: 9C67B457ABCD5E60EA6B52497F2D642F1D3BC8D021724D7389C7B85132AC16D0 | sha512: 3E7A7DBBCAD913A1C53A74A7994C3070D35F6BEA5B0EBC5CE8922E0F374D8C75596CC9806BD9D3A9A566768BF3E2D71BB552D904BD8A72DC187309182758FB59
tools\TfsCmdlets\Lib\Desktop\ko\Microsoft.TeamFoundation.VersionControl.Common.resources.dll
md5: B57C72A274BC4D3EF5CAD5175D79F896 | sha1: 5CC5D1531890E03CDD0A1D429359C7DDDD48C7C8 | sha256: AAEC0F3B3F96D47419C2DC175AE87EB583109EB18C75E75EE1FD5998E28785E4 | sha512: FE28C824F24CF29A09E4DA26F011DC64FAFA2D970B551B3CC52F3707CE993E3164F14AC824A27C809655ABA05F66F233C4014A963DAA4F41D573B3EA9DD9AAFF
tools\TfsCmdlets\Lib\Desktop\ko\Microsoft.TeamFoundation.WorkItemTracking.Client.QueryLanguage.resources.dll
md5: B0FB1CB3CF8D5D0C13FAFF809AD816D9 | sha1: 6DA9F7128F8C654B8ACFF72DF9DF6BC247E7A02D | sha256: F51A11A51ADFAA8682CB4C796BBF9738265A5D9C95BAC1959C99AF9EB709B0E2 | sha512: 0DE41B39BD36BB8870FB980BFAB9CD5CF715035BF68597F172A257AFBAADA231730AD22933568253FDE8A355CDA65F9E24FEABA25BF59994219A7E6777285209
tools\TfsCmdlets\Lib\Desktop\ko\Microsoft.TeamFoundation.WorkItemTracking.Client.resources.dll
md5: 2C824EAC37E4C92BFE8C7AEF521B6512 | sha1: 65827E471A583670BBB695552AA9A74C3610E47F | sha256: 24058A8076FAEA5EBB184DF4B45A95953670EB5BCA4D85FEB2117BF089FDBCDD | sha512: 9FE7F804B9E2C3F3E55841610921365D3B430BF42E327981F5C0128B6AA2258C6519CCFDBE0956880D0D9AB3598A437393D0844B169DB2D26E26314C01CCBDD6
tools\TfsCmdlets\Lib\Desktop\ko\Microsoft.TeamFoundation.WorkItemTracking.Common.resources.dll
md5: EB344FDF8023701D25996AF025BFA61D | sha1: 77E7EC1831280D960AFEC79378958AE832A3E242 | sha256: F7BAEEA53EE88C3777B13441E6EFD2D3F0463C0BB8E00DC1A1FBC772AF42F8E5 | sha512: D286868F87F5824B335435F9A8A469429D01D183ACC18BA67890F244C1B9F5738AD32362669D3DD815F5D4475533901DBB6A1AC101CB44F3E27B2152D9F7F5B1
tools\TfsCmdlets\Lib\Desktop\ko\Microsoft.TeamFoundation.WorkItemTracking.Proxy.resources.dll
md5: 15800EDA00BC45EDA5B8783FD62E3818 | sha1: D46CCEE0B8E7242D506C2D85E9D1F1BA44C91D72 | sha256: 698E486FF3A318389FFA11505DD7BF57C16148D21D471241A6794AC486C9C341 | sha512: 5A5986CDB393266C5905BB4F5D62EBF1A3AB6A20618DFF2CDBBE279CE69C9B8D263C36829EA3456B742902BE845ED2A48F220F622E88B3CD5E2E88711C394B89
tools\TfsCmdlets\Lib\Desktop\ko\Microsoft.VisualStudio.Services.Client.Interactive.resources.dll
md5: C94117A02834F03096A6EB1A669C29ED | sha1: 33ECF11BD076939A17AE37D53AB29C65BED89925 | sha256: C3DC34F920450F6FCA95B357AEAB410C0D61CA7588AF3259E40A9D7AB32C507A | sha512: CBE9CC3C1EECA900D849339B2DFB12BB1E8A75F58CF33D82852C800B157130539133462FFA18EEAE14ADCE3F0F483E3E9ACEEE9B82D6E880B9915B9B038D78FC
tools\TfsCmdlets\Lib\Desktop\ko\Microsoft.VisualStudio.Services.Common.resources.dll
md5: 04065F46167103F85CD1C45918E1D69D | sha1: C08215283351BC64C0A55B1D9C23F288662147FB | sha256: 38E9B1646A378FB3D07340E7F2D594B240983FB5FF88D9199B91C3AFF7499AEF | sha512: 62A293B1C847ED969B1970A642685673724FB796FE903173173A0E46DBB6E4AF0A5554993AAA2D84C09EE85BD1051E08C48EDAC23AB2DF72EE6E5D244EE9BFCF
tools\TfsCmdlets\Lib\Desktop\ko\Microsoft.VisualStudio.Services.Feed.WebApi.resources.dll
md5: A2D5F9EDFD0523A7584255CDE995247B | sha1: 697B7929E6EC5850336F97E99A82622B6C7AC13E | sha256: A521AA74FEBD72D95F78E9A2552F2ADF38985CB4178757CD165FC50C3A3DAF85 | sha512: 8EC9C859195C4AD69CEBC5DB7D0FAA793F4489700D31727F9F7B733FE94580E5BAA05F2C9B290F23E44DEADB3E0F5BB9707C31FD43BA864A93778AFB238F5B33
tools\TfsCmdlets\Lib\Desktop\ko\Microsoft.VisualStudio.Services.Gallery.WebApi.resources.dll
tools\TfsCmdlets\Lib\Desktop\ko\Microsoft.VisualStudio.Services.NuGet.WebApi.resources.dll
md5: E52A95A10273F6D52F4E6252C7A5FFC2 | sha1: 78C51723DE2DF07FDB35731940717FCB5249CA1D | sha256: C175C76110112D1FF932F408D07604308DAAC9201D17090F4133BF411565BC56 | sha512: 7177C6FF9D890E0223B1D5F9F98432E4C820CBE2DDF179D7DF6A285F8F5BD8CC4F1A66D1B8ED85F70CF07DFD1D3D0A0F3B63783701D8162CBCE53637064FB9CE
tools\TfsCmdlets\Lib\Desktop\ko\Microsoft.VisualStudio.Services.ReleaseManagement.WebApi.resources.dll
md5: 2EB03C0D7203AF8AE1E97A1E038D62A4 | sha1: 17E9DEEE9BA73C19A64689DB54782A85DBD089EE | sha256: 05BC7B352753CD2048E111AF3BEB9ACAD266DF8A429F0ED80AFB65B96945BC79 | sha512: C068BA143C2301A186C8918EEA25466ABA6CB05C3FF21757AF7945EA45721A3EFCB7121683929C2F9206DAA9FEA19BA9E191902D2F68E16B9A362A4E8B160B14
tools\TfsCmdlets\Lib\Desktop\ko\Microsoft.VisualStudio.Services.Search.Shared.WebApi.resources.dll
md5: 953EBA7CB6E59C1CCC64B17DC2A22E87 | sha1: B2B6B1BA5FB068DE387F57C387D3E2A0B73371C6 | sha256: 9859433A8C10BF1538916A5BFFC302979E889A2A0D430A5486956B996AF8BAA3 | sha512: E5E456869EEAF8974A6089041258E04797949E120E9E79253E5C18AFBCF6616CB157D9043CFDCE9B6696A1392B88C222C7C3DB91ADEFD74B9CDF68F25BC4D99E
tools\TfsCmdlets\Lib\Desktop\ko\Microsoft.VisualStudio.Services.Search.WebApi.resources.dll
md5: 75B01BE675C5FE89C90C32CC32C1F792 | sha1: 25B6208F071DD5EDB2DE878A3002D4BCC9B7301D | sha256: FB1AD4A13599F4C92885C1AA353E32463BED1D3A5521A8F7A93834EA288810E0 | sha512: 6E8931DFB3A8A42F1545AC8C3F6B4CCCC81206EB239FAAD41E5F1F79122F3C6C8B974A47E20044416659B82E9734017FF0679B4FF00F76A334B5B89AD89460B3
tools\TfsCmdlets\Lib\Desktop\ko\Microsoft.VisualStudio.Services.ServiceHooks.WebApi.resources.dll
md5: 8F855ABB070A759949F47D3D3B23C636 | sha1: E39A9AE3A11DEFFAE3AEA7E807A2F8B559597DD8 | sha256: 87823F369926B6F5121EAFA9B0E3EF93D137B8B5B1158AB317C4A86892E27C5C | sha512: 7301A82E255B863AADFF1402671CED6697936910A71485EB4FF91DB1CA53D87521FC1B558F1DED54DAC04DA5334653FADD89690DFCFE21898850D76E8616EA81
tools\TfsCmdlets\Lib\Desktop\ko\Microsoft.VisualStudio.Services.WebApi.resources.dll
md5: 19320BC091CA60A2C7E220C9BF848068 | sha1: 8005382D3763382D71E7F5C3D95AC172A1D365C2 | sha256: EE96D3B1C0D706D6EF608C489FA24E4FC00589AD458DC4E9B90D6D4DD2CF6514 | sha512: 46F8C3BE179ACC385F3534FA3EFD7D7AA68B405E2C16435BE32F8240A945C2E977AEB8E7A2D75F5F1DB58D3282B1F7F7CFA1BAB677D4F37A1210874DD7AC00DB
tools\TfsCmdlets\Lib\Desktop\pl\Microsoft.TeamFoundation.Build.Client.resources.dll
md5: DDD9456F29ACDCBEDAB95432A04CD441 | sha1: 93420A031B18C51528C9987B1C6C55B5324138A1 | sha256: 355FBC88F62F3ACE7ECE324082139C5A40D6059037EB1D41757E4203409BD01D | sha512: 0C55958842D5D3B3326B644DC180D559BCA84B533E2762ADED0982FE7B5FB295F1708B36A636E7E223BFF81BA984DA4E90567CC2462E468E4C8972416867A558
tools\TfsCmdlets\Lib\Desktop\pl\Microsoft.TeamFoundation.Build.Common.resources.dll
md5: F8DF0D6C6590ACBB0D2CB8D4586F5898 | sha1: 10CC1429F4C312B5FB3E170554F94BBF46B5CC25 | sha256: A8B4AE6F5202BE92BC5BE7EFE2B0AB6FB023C00B486CFFFA89F7A5A1D6D88FF2 | sha512: 8117F69513908AD77C921E073597A216B6CF5F938AEDDEEFCE69207B70AD99EB348908A85678BEFF896D10BE59FDAF77B189A62FD45C492121B282B39BF28DC5
tools\TfsCmdlets\Lib\Desktop\pl\Microsoft.TeamFoundation.Client.resources.dll
md5: 6E81D4EFB034655FBB1E6205043A1543 | sha1: A21A80A791A6C20F4FC45C853887E77126A0E652 | sha256: E9B5F6FB74E575D9965F144BD7C220ECDABE089F6FBEBBEFFC59F013AA991478 | sha512: 8ECC5541CBC7E696F1D15AB86749961F396A8A1430FB6A6516EA3DBC2E1DB5FFFF2F869F19C409DB2FB52A25A7BECFC61B7694EAC267BCEA21037D435F51A302
tools\TfsCmdlets\Lib\Desktop\pl\Microsoft.TeamFoundation.Common.resources.dll
md5: 269C2BABC0EB56415AF6080A62734F3A | sha1: 68BF5D5B442691CE61D8B149B37DD02D67CC6D47 | sha256: AFEE214825FA0ED34D6CE4AE0CB6BDC64156A94A5706E0F360D8DC2896626F45 | sha512: C90BBE861B3D41B6D3D8E8DC18CB3AE685F9DB26BFB42C611CA0302A5421A7EAF7D1AC58D8C8C2D902CF87737702FC3D0BA43DFE2154D8BEC35DE55F1C59C6F2
tools\TfsCmdlets\Lib\Desktop\pl\Microsoft.TeamFoundation.Core.WebApi.resources.dll
md5: 9003C7F18FF5427C5D0D6BDC93C16EDA | sha1: D1AA0FFAC8C66CDC72023AE9E5E48025E1710EF7 | sha256: 6E4FCDB40998E67F58113FE92FCD62DEE0CD3E609225E55A007329CEDC8D09F9 | sha512: CB5C804DEAF1A8D6BAC8B705F1CB3B0950CFA39210A808080B6E9CB46F3C083A50A44178DDD1F78877CA44B3869E28FE69FE6C46E50EB71F4794FDB269231750
tools\TfsCmdlets\Lib\Desktop\pl\Microsoft.TeamFoundation.Discussion.Client.resources.dll
md5: B67C71EFCA36929BB9BD3ED0C92CC7C8 | sha1: 182D9CFCA01FCB95127A921714557C4C02654642 | sha256: A261C1300FB5A73704D44EF830B307DA9DFCCF2F19BB4212B04EFCDB46FE81CE | sha512: 18E4F512D1751CABE93AC5F5FA4C6B30AE499AC3AF0ABB3C6BC94609EE37286C8D84D9BB84776254646B735B0FB556901D365E6DC08C5FEAA21B6F3F4036F275
tools\TfsCmdlets\Lib\Desktop\pl\Microsoft.TeamFoundation.SharePointReporting.Integration.resources.dll
md5: E10520B704F73A61CB28176027B43857 | sha1: B341C25F4D992E6901F72DD0C777EE5C49A1F5FB | sha256: B481733FFCF5BF166EEFF5484D7CE2C165722CD2BFD4B26A63AF009E8D7149C6 | sha512: 9FF3ABD4F64C8D8E5F1E64053388C4489E0B17E81CAA8587210F033DAB1BBD130345730CD149D973B438475B8B45A04D9E3245EA7970492CC6611E45EF8D4528
tools\TfsCmdlets\Lib\Desktop\pl\Microsoft.TeamFoundation.TestImpact.Client.resources.dll
md5: 4FF0E9D618FF3DAA710FF35327BE44E3 | sha1: 827A99D1900BAEA51D10E6DDFF96B4272F262838 | sha256: 2D4D0C414AFBC2DDB424D5277ECBC1B86C84AEB1A020A085722E2937AAE571DB | sha512: 76BB9B98EC3B35CF5B4D6C30639F6CA388043BA6046A2167CCAB9EAA6F983CBE924727EBF0BAB31F89E5130C5EFF5997B282A6BB7A918F41C9C1D5060FEE8D33
tools\TfsCmdlets\Lib\Desktop\pl\Microsoft.TeamFoundation.TestManagement.Client.resources.dll
md5: F9A7A3E7ACFF80054BEAFDDDA9F0A50A | sha1: E106C1CAE7905465D71182670A914539EB007F76 | sha256: 92D21D2ED5C14FCA5DCE88689D6CC44D657D3F28A1287FCF03C1707AC3D0A2BD | sha512: 1C8A3B40217B7CE59F46FBFC3897D524CA9968EEBFD462C3C429A89C49575A544A084C547D03CE6BB6AFA925CC34E80D9352221558E074DD1B60E16180C1D601
tools\TfsCmdlets\Lib\Desktop\pl\Microsoft.TeamFoundation.VersionControl.Common.Integration.resources.dll
md5: D6F044DFBA5E4CCB443B8C90E3E0463B | sha1: 7F46EE82D408D4972071DF68FB3F4E26F2855433 | sha256: 37A1FEFC0A0705473D82266F13B97E1AC6879F4213CA5EFB81224E0EDC7B0611 | sha512: A717BFF947880BDA685BA3D0416FDA2834D3EE9DE37BF72B54443356B8069DC7DEEED94745D25EB64F1AF5D6B0440A6A2C2D24048CFA7C4B0E46B84EE32A49CC
tools\TfsCmdlets\Lib\Desktop\pl\Microsoft.TeamFoundation.VersionControl.Common.resources.dll
md5: 990D2E7A4C3256C5D9C96D93ABB30AA3 | sha1: EA69393F0ECE3C67470E077B62BF319CFE633466 | sha256: 892BA95312E06225AFE63CB3669DA973BF0FD09754EC789BB948F808C81B995F | sha512: 7C1924AA751BA47416079D38F539BBC7E3C382829F697633DE7EBFB942020844DA296389CCD8FFD776B1AC3394FE5BDA7681DE40DEE8DE78B09993543DBCF048
tools\TfsCmdlets\Lib\Desktop\pl\Microsoft.TeamFoundation.WorkItemTracking.Client.QueryLanguage.resources.dll
md5: 139BC65D05B24FE25CCCB276B97A24C0 | sha1: 68BAD5244C22077D2EFC16E332239B1D9FF2507C | sha256: DFC99D41510F14C753246470687E4AB53A4A26F76DEDF5B3F620B532068769B9 | sha512: 39CDA813F72198F41E6A2CA437D5C843B2A1192D645822E7E0EB858D051AC8D09D04ED8F02EDFFF8CFF3C041B5625321EA85A9105617A3F0A02C92EDABDDFAE0
tools\TfsCmdlets\Lib\Desktop\pl\Microsoft.TeamFoundation.WorkItemTracking.Client.resources.dll
md5: DC85C23B7C206BEEDB05AE0DC550A47E | sha1: E9DC1664765811C4AB759F6DE412E1A51EE03ADF | sha256: F210BA1AF35E9F15AD972B07C81BFEEC21B799CF0CBB4699608C63C6FC1FCA58 | sha512: F38A0C006229E82860200FA55B89E489B6E6B21C060B1B80F05D7EDB14449F25347DFB1ACA426C2DF7798C8AC9FE94054F9318BDECF2118570D455D361AF04D8
tools\TfsCmdlets\Lib\Desktop\pl\Microsoft.TeamFoundation.WorkItemTracking.Common.resources.dll
md5: 416D4B12854FFFF52E6F1B1D1631826D | sha1: 44C4C0888DFCD8083FB3EA2A6BE2608D4211F46E | sha256: 05969EF9C0FE8C7CC07D27AF4983F0588371E23DC36D34F77A32F94471339132 | sha512: 85B2D912F22E13EDE31B499AAA651BD88EB298985C0038C18E36BB88E7E79EBAB698D70BEE0E055151373C04DDAC1E683A231D4E071E0AEE467305F6A4A23A04
tools\TfsCmdlets\Lib\Desktop\pl\Microsoft.TeamFoundation.WorkItemTracking.Proxy.resources.dll
md5: 14E58C253D0EA6C9F5AEB32399BD5649 | sha1: 60D4247E8A100587F3B7A6C816818230592FA6AD | sha256: F91061E24FC13AF99897675487FC329122573588CCF17A771ADF3513A2A6904B | sha512: 38D448C0C8B9123EA98F2C6F271C30C4C73A886ED03EFFE026FABA57B4F96855D8C1B2DC85BA7974BBF0DD2AC66F7D44D11B498929859E2F867924368DCAD4EE
tools\TfsCmdlets\Lib\Desktop\pl\Microsoft.VisualStudio.Services.Client.Interactive.resources.dll
md5: 5D5F3A7C8024EC29BF5BA0012D43C81D | sha1: D77EB4D025AD87B30D8CE49B4F989BC6504323BF | sha256: DA5C35371D9AC146D0EEBC0F9FF938B348C19AD445BAFB8B7BE9EE5CA5BD316F | sha512: 5A5B0A6F49C0E8A473903B8AF8C83A3B5C2AEC02D7E4D07B207B4D88B6E75279AEB9606948FDB0E06CD8D9CDF8C9D4B316616238B7536A23A23762158F77CC71
tools\TfsCmdlets\Lib\Desktop\pl\Microsoft.VisualStudio.Services.Common.resources.dll
md5: C7AC0032C1E5B132180BB14C7EF8E94C | sha1: E242C60C6FADC01872E0B126FD4A051E57D722B0 | sha256: AE43855DBF85945A6D21F684A4E1FF621709A6492FFACA4EB2A803CB140630DF | sha512: 4AAD56919CE68680CC5A0F86C1D09D25A62AA705E17358F6FE28F8E7560929C35D93BA8B5C3136FC8D3668BE95172C88AD26EA1BB9959F15EC0175912E7EAE8D
tools\TfsCmdlets\Lib\Desktop\pl\Microsoft.VisualStudio.Services.WebApi.resources.dll
md5: C384C2FA84A37E7137F358690BE4ACC8 | sha1: CF6E6153B980CC019FE0E6D63059C03377C587D8 | sha256: B71A889FE5654BF0925E1E05D498308EB7E4800440EC5DB29DCD608C676DD470 | sha512: 5524FFEA343F946681F7BE24A1C48710B8D302B8B678C30D0E04D9CEF6A371912462CB138C311560F8363EF8408ECC339727E3F80FD251CCFC4E29CBFBEC1BF3
tools\TfsCmdlets\Lib\Desktop\pt-BR\Microsoft.TeamFoundation.Build.Client.resources.dll
md5: D024B28D15CAA56CBCC8F22B1849A8F2 | sha1: 68C03B988F37C920133EAFF8C1FE1DD0BA9E7745 | sha256: 21F72737E4F48B4AA4228830647C202AEC9BFE6E2AC3AECC6F770BD68EB222E2 | sha512: 041BFDA96FF437BB85274D1B44F3BAB40298DA82CA92AFDBCB93A38893C3A67B94FCEE84983689FC90DF9F95B015746FB5D8D151B68CF43B85981A89CF48DE2B
tools\TfsCmdlets\Lib\Desktop\pt-BR\Microsoft.TeamFoundation.Build.Common.resources.dll
md5: E14ADF508329F78E4B86138B12970285 | sha1: E1B4624F21A4F3D8CF05146272AE1D50C6DC67C6 | sha256: 75C185D9C52EE9D6044A4EE2D9F2FB20539DAABEDA1C0D65A55C76AA9E85A232 | sha512: 3DECF40ECEDB1BB0092AAC8344124FB2947F9DD938082D275489330ACA83A0D5852C33D91BEA95FD3D6901AAE2219D94D2D384D6F90B6533AD913AA6A66F98DB
tools\TfsCmdlets\Lib\Desktop\pt-BR\Microsoft.TeamFoundation.Client.resources.dll
md5: D32D177351117F0775ED71F1A05820B2 | sha1: DDC7AD629DF5C52B63C98D36C157DCB13651CC3E | sha256: B0F009CB610B371266EDA639D5E4437F36D9A7CA5935ED33D8CA0B9286C8393E | sha512: CB82D2D05F1A818215F695B29C44FDCD567F7DA1996BE5E16DE3B5840A041A2152A1885E27F126DC5A99D1B72F08F5D27AB3A8DB836D22BF6906AA7C0FF26178
tools\TfsCmdlets\Lib\Desktop\pt-BR\Microsoft.TeamFoundation.Common.resources.dll
md5: 9ECEAB204437F2F450E170F4AEA20DDE | sha1: 63720C79B4D9893FC3EA9B908EECCE4CCA48A232 | sha256: ECFBEBBEC5AADFF5FBB3746A716D9D35A677CEE5AF2A48A2ED06F0E42C0CDB08 | sha512: 2507EE69EE46D144FA7A52F241FF268988033298C0E6BAB633C334DB6F8250916F292607F15E637961AB83A093870FD12DD4F7105A3B09DD7CD425821EE3D7F0
tools\TfsCmdlets\Lib\Desktop\pt-BR\Microsoft.TeamFoundation.Core.WebApi.resources.dll
md5: 489633EF1CD367AE70F7D614C4633458 | sha1: 893F5E1A1708D49B4C2D4829BBB53D1CB66D8D66 | sha256: 79BD2F40806ED8E49A2893B8984ED353B3B37291698CAC4C0AA1A56AC850C0CA | sha512: 76C3116F6D5CCD77F70858449B0C9B74B354A274965E69351AC3A9C4F100D4A9CD7E702953FCC46C8BD9B6E64047778849716D5723BF209CE509BB262B385F37
tools\TfsCmdlets\Lib\Desktop\pt-BR\Microsoft.TeamFoundation.Discussion.Client.resources.dll
md5: E1CF5656921C3E2E52ACB2433FE6E46A | sha1: F28839FB36E71E153B287F6F1622DE02BCA15DC9 | sha256: 81888BA952B627A028F99B90A150F31210027A98809CEB45844A5C179890A1B1 | sha512: 305A33D456BF3BD8645021247C61B2B444A2CC0B56030F3D8E0C6D824AEC50441294DFD5481AF022F0BFDE97F033632956D962F838530D731CB5CC101D056B66
tools\TfsCmdlets\Lib\Desktop\pt-BR\Microsoft.TeamFoundation.SharePointReporting.Integration.resources.dll
md5: D80BAAF48DA51ADFF9E275F8F9C13050 | sha1: 1216113F0C2628F45DBB1A8586A223D0BE96FEE2 | sha256: 3DB34E52F900F069543D3B9D991FD78CFC201211CCCFFC1F9A60C245E36B2D03 | sha512: 7ECB8F43459A0179BC0A94E25E66AE66048CAF1106279B9B263484644C3FFFC98A0ADA2D945E521A3E6DF1FD0B97438527D877E02A1274E1029C9B909B61929E
tools\TfsCmdlets\Lib\Desktop\pt-BR\Microsoft.TeamFoundation.TestImpact.Client.resources.dll
md5: 6BF456EA4D2C65199C062AD4B234CFFC | sha1: DC83F6E8BA2FACE8A1EB73603E240E431CFF6562 | sha256: 379F76981C7346E7D7FA56C633B3B7854A90A7FB3FF2CDAC753D0BEDF3E81C96 | sha512: 04A929D4D1E140C60E5CD8F3C0D56298EE435DBEA5216C045CC76183D724EF29863F39B4382405EAFB31D23CFAF1E010B26C8099F8D9ADD3BD5CF0ABB8EF07E2
tools\TfsCmdlets\Lib\Desktop\pt-BR\Microsoft.TeamFoundation.TestManagement.Client.resources.dll
md5: 2605AEB6F8E44B0D2E61A3C02207878E | sha1: FB37083AD43D06BE86868FA138C7D14D486130CC | sha256: 55ACC0B68E9325B667EA94FF1CAC2613775E398E75720A18F882C5B7DEA9BA54 | sha512: 5F66F1DD4331C6B2270CC5DCBF35BC1381B30B0BDEA43DE5ED3765AC50C6A75BBBF3B0F4C8A1759CEC5B4D50C591A63D7D3695550B0760FCD4E6B3C5D3D90BCC
tools\TfsCmdlets\Lib\Desktop\pt-BR\Microsoft.TeamFoundation.VersionControl.Common.Integration.resources.dll
md5: 43F7EC02D1D890B13517215A193EFB57 | sha1: D616B2AB4C1259CEA4103B1BEF9ED0DEA17388C6 | sha256: 0BED40BFE07A43C1E51C43F62B8F26390AD388D147BFB8E2C516F6D551FBEB84 | sha512: A9608F10C0E0998A7814C9FD898A52B7A995A575707D23E58D0E3787DCDA765513EAAC414D5F7F465B1175939ACA446440CD1F7E73BA119C6299D990DB5569B7
tools\TfsCmdlets\Lib\Desktop\pt-BR\Microsoft.TeamFoundation.VersionControl.Common.resources.dll
md5: 7EFB7A87463125204F82922BDDFE0F32 | sha1: A747CEDD278AC77146923BB74A540D71242F9B87 | sha256: A70C24D3503F7FA4F9C1ED7608BF6CF5A7C07C29E4785A597EE009EF2C407CFE | sha512: 3DBC065CFF18CA63194FECA088B1A9392F3B719CBFEC33C204C46B812C844A3E713B9BBBC1908EBEAAEB794054D06056BC12395236A630600C2050F9F6133BAD
tools\TfsCmdlets\Lib\Desktop\pt-BR\Microsoft.TeamFoundation.WorkItemTracking.Client.QueryLanguage.resources.dll
md5: 061A1DC87F4EC652547BCA1F3CFE2123 | sha1: 2B63DE8065476026C6E32F79F73EB738BFA34054 | sha256: 3C9D2CA04C41A43638E8854E28D19DEA9782FD2150E5EFB31702492C315E5B47 | sha512: 5ED9CD7CA506168E12A59B9A7B854179EB55780DC4596C97B50E14A85BEFF05A59B9B0B3665F96C036ED749B6B7A0477BDACC2663485C8AA54472280662D792F
tools\TfsCmdlets\Lib\Desktop\pt-BR\Microsoft.TeamFoundation.WorkItemTracking.Client.resources.dll
md5: 788A5A87BDC04287F36542EBE5B47046 | sha1: E215B15A13165824B83A712635E471E92F9623A6 | sha256: 6BD51D8B82757426F6F5F4C487E9FC7FD6738F93276BC0BB58702030161EA58E | sha512: 4EF65C5B2CC8234BD0B9713F6594E6DF7C9BF6307BF8020C7FCD503E78B5F7AE622429CAE1812715384E5325323F753FA3CF53D683C57C12F8E27840E58C216F
tools\TfsCmdlets\Lib\Desktop\pt-BR\Microsoft.TeamFoundation.WorkItemTracking.Common.resources.dll
md5: 327FB77A035AB426094D10B59BBF5FCB | sha1: BF32ECD4A0587BA24FEA5E69F46DAAEC7553B497 | sha256: AB753AF407BAA93A74027AD72E2485D7EC9322BDB2303794E4DDE4F01F69859C | sha512: 0319BEAAF942AC388CCDCF1EE82A6B122A89F777B469B143D9F8DD67127E4A57B6BD62BFD32A7B21A35704E52FA7DC68B7B125F7D54665B0B1A1028BB0B4E5C2
tools\TfsCmdlets\Lib\Desktop\pt-BR\Microsoft.TeamFoundation.WorkItemTracking.Proxy.resources.dll
md5: B777616B8899417BF5CFB6F7D5FF2EE4 | sha1: CD90190774102A711A7E87FF8043C5FCEC75E90D | sha256: DF1E907637312B0374C9C81D86B64DFA550CB2E4402B3DD5B4C6B0880CC7D199 | sha512: ED820A361DDDA35C81740F023944D4BDCF533FCFF66784872B0CF34F94C703D9867D1A9895937DC2BC1BB7C27C4D61A960901E91E067EEC84A6A1C148E5976BA
tools\TfsCmdlets\Lib\Desktop\pt-BR\Microsoft.VisualStudio.Services.Client.Interactive.resources.dll
md5: 5FE11759FA5449EB71C55906A6D5E299 | sha1: EC92F7223EFA3F556936154E06E1AB7F815BFF1E | sha256: 7774F078168FCE3DAABB8DAB36F4C53FA50D75E069BCA19787BA0DC37131AF97 | sha512: DB05C2C514F8833D1A79BE152A09D01F8828765E828E6D98B7AF7626B8C58ECF210E4D5CB8A52A6976D359FFD6F5ACB7BA550D796129D33B21B0B3DEC31DE662
tools\TfsCmdlets\Lib\Desktop\pt-BR\Microsoft.VisualStudio.Services.Common.resources.dll
md5: 7574230083146AD53E01FE31205753E8 | sha1: C79A0D6C5C02FCA27E28E2C4E0A12794DCE3E903 | sha256: B004607B3EE744669D76F67BEEC615E7DA87979A0AF602B64A71E0128C15368A | sha512: 986181D95CB4917CB0946A3C9EBAB2C708A6DA4D1A0BD57A9485E6698D9E591D3FC2812986414F64C5C284971DAC797DD3A3F687805E182614E1FB6F2926E328
tools\TfsCmdlets\Lib\Desktop\pt-BR\Microsoft.VisualStudio.Services.WebApi.resources.dll
md5: 0F75369CABE2C89DCC9B7083877EE8AA | sha1: EF38D2D5B71EA334DB8EE92104382BEFF74B6439 | sha256: 4BA0B81C092316540496A5CB7FB0C4875F055761E35CEEC5CF14A417EB97920C | sha512: 5E89F3025A70E05F8A00B7FBDF7056F8AF297B1FB3B35EB5073F4E0015C0F6BEAE5A114868292034B70E56D6018A7F26F99423CA92BB8C2AE01CE51295FB1172
tools\TfsCmdlets\Lib\Desktop\ru\Microsoft.TeamFoundation.Build.Client.resources.dll
md5: E76D04EA36D4DBEA8A2F053F83EA5054 | sha1: ECE4E411E386E725C8CF233B2792E359F631AFC5 | sha256: 8D8F34E9969E5C1A04B29C79B3B5DD96F46B45B9F9A85511583B8E8F295204F4 | sha512: CF1AFA48DA0A7174EAABB46414C5EA4C8E5E3788B1AC89575D4478AB437E910C19D95FF31B677E89F602CB0A832457C29562B312E22F120EABF73BF5CBFAE490
tools\TfsCmdlets\Lib\Desktop\ru\Microsoft.TeamFoundation.Build.Common.resources.dll
md5: 11404046B05F6B1D1824F1B77E97A3F2 | sha1: 51FF85B73A981A055A9356EA6B89B8AF1C9ECBA8 | sha256: E92B15E66DA00996CE19476F6BD6AE46B76639821FE2612A02A2253AF4DF4EC0 | sha512: 36034FBFC3DBB8C60288A21C77F6CD1590919F4C32CA89D81AEAAFF0783C67CAC71C0E4EA4B09228AAE7A144B29602FA9A5DF646D02EB63D9651F26FD510AA6E
tools\TfsCmdlets\Lib\Desktop\ru\Microsoft.TeamFoundation.Client.resources.dll
md5: 3B60A6E9C90855BF6B164487506D19D2 | sha1: 08F121CC2F690F7CD1FA3540896BEA54590638AF | sha256: 679845AA3AF580DA55191A88A40EF8E3D5A7B40249C02B91CEFF255EA844602C | sha512: AAA6CCB75E028A21942839F8B6EDF778F4B03051D1F85DC3C4982AEE440DA4AE891C28B92EC0A4620855BB1EA8663F7AFC89A9CCF573A960D843B2965EAB5DC5
tools\TfsCmdlets\Lib\Desktop\ru\Microsoft.TeamFoundation.Common.resources.dll
md5: 3FA701E0A1BFF22551BC6EEFC4467A54 | sha1: 662B35301C3D44DFA0A00E332F50489CF1D4304D | sha256: 5B18B3835A70C3802CE3E29DA3FFFF9CB3EEA0DED684F138ADF7CA7546717F18 | sha512: D53512987A112E3B40FEC7D5A611B8DE95E2B4B35062FC2EB22D690722E5A7C6CAE432A111A5A334F73E2A38556EE39829A5416FEB2C2C2D62583C14720220C1
tools\TfsCmdlets\Lib\Desktop\ru\Microsoft.TeamFoundation.Core.WebApi.resources.dll
md5: ED62E0AFCBF3FB8725E36201D0C4D3F0 | sha1: 583744A75F94A66F915C698BEB9B3D19D0603C8E | sha256: 10F26574971BB44D9FC654E75C3FACE612D7A5FC2DCB68CA9F0F2BD2CC28BEC4 | sha512: 33243DDBE5718A44CDCA40E861AA19C2A536D1A001C2E0549E4C367072779E132B59FD1A38B00C82DA31F335A05161D982B808BAD2267B0DE11DE6D28312E24A
tools\TfsCmdlets\Lib\Desktop\ru\Microsoft.TeamFoundation.Dashboards.WebApi.resources.dll
md5: 91401F1929E7AE4FA731A50564C4277D | sha1: CBA9871C4AF5DD9EE7BA63E30A903976772F10C0 | sha256: D6B658266FFDA53721C09616FD0CC90F272AEE4001061DC1A3CD99CFEAFE7301 | sha512: 83A725AAD3304CCED2F158FE8C17B3448B57D64D64511FE6D223C8C1B1058A2C5819F5D29120CD8253052680344E6B3CCF1A414D3A0584A353782D1A5B57C3F7
tools\TfsCmdlets\Lib\Desktop\ru\Microsoft.TeamFoundation.Discussion.Client.resources.dll
md5: A38DC700A272FB423059CD3D08FCEA84 | sha1: D55B1F1C79BF20E89B4F4384D476C5D42E92259B | sha256: 6D2E3ACBFEE3F18345AB26C2A8EB0CCA5560F41DB476A9C70C1624FE47CC3D8B | sha512: ACA4D596B7624863DEBD0854138C54041FAB45E01C2849E5B56AC015185F0A5C6FA8604947002D8630FD5389221A72A9941BCC594C5F61C080A2E5246E7C1546
tools\TfsCmdlets\Lib\Desktop\ru\Microsoft.TeamFoundation.SharePointReporting.Integration.resources.dll
md5: 625F5AC482872DE4E69A699F99433C1A | sha1: 9DAFE3DA47A7B12649044529A6916FD97E96AF7D | sha256: 5A8AA89B83920B709A0E3837964583609BDCC847E1DAB30A05EF28A212942C65 | sha512: 65D89AB15051C404355640C72FAA65DC9FA868B0D17590DB5CE5F0345EA118F97E5E700209D458DB3AD90E95DE811BED2298863DE5A83353ED8DB9F802CD865D
tools\TfsCmdlets\Lib\Desktop\ru\Microsoft.TeamFoundation.TestImpact.Client.resources.dll
md5: 558DE94CB4C2981C7125FDE69F7FE335 | sha1: F37500F70B56BC5C134027D498727D1645AF01D4 | sha256: 083144DCBC9314A88550246AF45D959AB2F5B2D51D66AA4FC023D1E79D2204CC | sha512: B10CF83A2EB08E7B4BE86A672C10C8DD9BC39D55BA24B8D4A2E3B5D4EE5D8182EA53EDBF22C80D86541CCDA9347127A8BEA2776EA631E6448CB8DEEA7B573C14
tools\TfsCmdlets\Lib\Desktop\ru\Microsoft.TeamFoundation.TestManagement.Client.resources.dll
md5: D277D36CD830C9A07F0FE5D5E4592CFA | sha1: B14631F81DFECB89A851014000C3111165FADD8E | sha256: CCADA5AF29D9E72214FAA81D8719F39E4823DA138BEC43202D06E0805C4A1AAA | sha512: 72DAD8AD02714E2BD8A6A6090D7B2DF9EE1857FD8A650618E15B5458F703D2A1DE26D2463BC2EB3458404437B7F7A475FC13E7C6DD98F80E342CF24A56CB2704
tools\TfsCmdlets\Lib\Desktop\ru\Microsoft.TeamFoundation.VersionControl.Common.Integration.resources.dll
md5: 35EB5EDCF906201B7CD5A44D25141E40 | sha1: 499955CB0AF6622B9AE8651C81B61334C7976832 | sha256: A8B64918B211DF5DABA0E552389AD8F0BD37CF7A39CC24F70DC157B14A1718E1 | sha512: 37B28ED1C7F4AA7B91CDD7872493D46FB36698A3B82B77F7F13F5FFEB2EE27A702C5BAF55F501CAB2D9B4FACAE8F89B671C16950096E124A4B790B7302616766
tools\TfsCmdlets\Lib\Desktop\ru\Microsoft.TeamFoundation.VersionControl.Common.resources.dll
md5: 9CA6F127EB0FD4DBED53B69BB828F127 | sha1: C67321031B2E85C689E48954A87FBC5F60CB6889 | sha256: D290D299AA8682E2652AAD0982F7BE095BEC6F7C1177EFFC1235492AC97F2990 | sha512: 361FD411E57DB43A8171BB957E933DC68061C90A7B311B1661DA4DA90FC97FB46B8AC772B54B831E2A33BE2D55E72C8E0B79B73C771611DC8E1C1FCE6351701F
tools\TfsCmdlets\Lib\Desktop\ru\Microsoft.TeamFoundation.WorkItemTracking.Client.QueryLanguage.resources.dll
md5: B00B26F96E5B35C73A44866BF720FD9A | sha1: 22FBCDEA1986A685649345E3517C379AC72C316D | sha256: A47CEDFBD06CE624644A2AE5DFA1C574B4B9F5A62C8DB28853D5F9BA15B0F9A4 | sha512: 67EF156A21DE80A5D87C76824311D43DF17D8AA74538080A82000DBB03C1433D6CB2051F48E713F10BE77D5C92CAC4A7B07FE19CF93B3C9A2AB12E40F8084011
tools\TfsCmdlets\Lib\Desktop\ru\Microsoft.TeamFoundation.WorkItemTracking.Client.resources.dll
md5: 6FD7296EB7382121128AABAD5C1D463B | sha1: 9B77B1AA0774D9582C5BB848B31F634863B84205 | sha256: AA5526CD80CADEEF6C01DA465E0F1182783AF3C42A330277CDC4CB59BB4B7F5B | sha512: 01B57B5AF7100599656F3AA1EEDE80A22DA3CBDEFAE56044AF1465AB2FBF30CEB9F54D2ECC61397D22B2A942AB55FC980B4A7FDBB32C4EF6F309545827E277F4
tools\TfsCmdlets\Lib\Desktop\ru\Microsoft.TeamFoundation.WorkItemTracking.Common.resources.dll
md5: 78B1F0469B2388F1EE62CB7D5C82E09C | sha1: DB47D9695634717DD86F5E19C43C381B2F2445F1 | sha256: 084C6661E3471E445E7EE56A6BB9F86302C30BFF9D68F8BED5B941B3A5642ACA | sha512: CA10EBE8F422378A450060C50865892D9768C259C194BC76C57F9567DA271ED2C9427E2B697B70DB46C6E8D5D1C19FBA28679F3A8379DBBF5C98ACB5B2022E86
tools\TfsCmdlets\Lib\Desktop\ru\Microsoft.TeamFoundation.WorkItemTracking.Proxy.resources.dll
md5: 1F972321294454D8CCC5C663C9FB555E | sha1: C23C3B3E7C86BD38AC891EECC4EDA398379469D8 | sha256: BC7C39EB319C5427BB4DFF22B48511F84818119EE2C643A6B79926CA2F1FEF5D | sha512: 36395AC883B20340E987FA335FB01B1BDD162753F5A2010E8C6B63FF9B4C154B3FE3B873C02322E5416CF7E3A13AE284A6D67C4CD901D91D5E4607F29D7E8802
tools\TfsCmdlets\Lib\Desktop\ru\Microsoft.VisualStudio.Services.Client.Interactive.resources.dll
md5: 9199CC6398583C8F729AD9C1DD091D35 | sha1: C2EA69C56A8FC370EED2F624FE7AC31825680F6B | sha256: EDD4333E0EA3CE06A76CA19EB0E7475FB8755988BE18AF0B70EA330B8D502043 | sha512: F1B793D740EC4BCAB82E2EE5CDBFC7101822874BE0AF3BA7D7A64E310A7D5D9CCE29D09513475E3C67BBCD0D9D7AEA5928BF6ABD3F324F994C91355BF9567D6D
tools\TfsCmdlets\Lib\Desktop\ru\Microsoft.VisualStudio.Services.Common.resources.dll
md5: 4321A1624DCCED5DD7A91CD8D9D9721B | sha1: A972E31DC54C7A64A61972D4D195BE0D40774CD8 | sha256: B4B4F9A1A065EF2B5EF4B42BBFE63D290D87D076C85FD289036209BD153F888C | sha512: A74322B8ED77C739E6C7E2C16853DA8C5EF4FA2C10DFF20EBDA5D3054B2777B6075AA1EA18B485187685F84438DF7F55CF11B8B14B67E2095DBFE9AA72709020
tools\TfsCmdlets\Lib\Desktop\ru\Microsoft.VisualStudio.Services.Feed.WebApi.resources.dll
md5: 6BE50CD77CAF08799DE0EDA742150972 | sha1: CC7762A847B7A65550D078A64B07981EBBE4CCE7 | sha256: DBEDEB75875A58ACAE3DD4E09445329FEDE7D021E1158D6995E78C3D2A537A5E | sha512: 5612B0633C5E5D9FE8A252B267952CEAAC4678E03A00AB1614B3B4CEB09ACE4CC5A0D8A9485819234516839179D1C588CFC68F237E8FCD65D63AF99FE8778B64
tools\TfsCmdlets\Lib\Desktop\ru\Microsoft.VisualStudio.Services.Gallery.WebApi.resources.dll
tools\TfsCmdlets\Lib\Desktop\ru\Microsoft.VisualStudio.Services.NuGet.WebApi.resources.dll
md5: 5C5E90027C3119E5FFACDFE96E3783CF | sha1: E71C22F9435A5E6103FF2D85AD6E122CBF414CB6 | sha256: ED3CC3F05DF937220D38021EF4E434BA793C4A467AFD5AEB33B985C6E7A1CB56 | sha512: 9F703FE488454E9CAA9D81BE8FA4E591D94E7F93F55465AF68B8E43827A284B8DC2CBDE2773D7C08FB484795BFE7E6835645ACC52904F34DD3BCA3F180C934D9
tools\TfsCmdlets\Lib\Desktop\ru\Microsoft.VisualStudio.Services.ReleaseManagement.WebApi.resources.dll
md5: 2D4204FD9BF4156A55D08EBDDED841A4 | sha1: B19365A2EEA8944F9B90814AB399C99375F02B68 | sha256: ECA6481C4A9B0B8BEC5CB67DE7494E2102D6E3861AAD24063EC5C33478E52548 | sha512: BD813E12D6D4BDF50AC448ABFFFC619243EAB4D5EA9517DF783722BA6A59AE447AE4E31F4057B36F596A8F035B75F8E40ABB63DF40A02320D39F69110DEC2855
tools\TfsCmdlets\Lib\Desktop\ru\Microsoft.VisualStudio.Services.Search.Shared.WebApi.resources.dll
md5: 51C662AB7B312F7C25C84E3CCC5368CA | sha1: 004987CF78F80F3D09B7E67DF63E8587921E7DF2 | sha256: CF0AD7493C8D09EEDAC838074165DB7AEFD8F84F020C1F5688B1410A44E0A2CC | sha512: 2827DFB4501897AB880B6EBB394DB99B165617F963D92937B38998653EE5FDA1141A3663D5DD986A25FA4125F88956E34F79E9BF0EEE06FF253CBC878CB79A22
tools\TfsCmdlets\Lib\Desktop\ru\Microsoft.VisualStudio.Services.Search.WebApi.resources.dll
md5: 06D55FAFAA65A9F49B3DA0B96D7483B7 | sha1: 3AF5E3617094CF6227A3A6B6D9491BCB02E8DE61 | sha256: C43F2FCE190B95A94C29AD5C2CB2E541902A768F71179B7CDD2F34AD9B45E7A3 | sha512: DD1F296ECDA78EAFBF931F0E91171CC4A0078A84CD13EE67FB4387A689003B0F706F0C2B40C3F39C3CEC22AD011A891E58E656B3C61BD077A6E25EE0622953DB
tools\TfsCmdlets\Lib\Desktop\ru\Microsoft.VisualStudio.Services.ServiceHooks.WebApi.resources.dll
md5: B20B4CB323C82E8D002D7CECEB73ACB4 | sha1: BB93FA36B36B74639ABCE8475CF957A114BC8916 | sha256: F9386A0B0F35768BE5105EA86E8E94C17F09D6896DB0645B12878542FBAE9C81 | sha512: F69C3B510CB7B1E9927AC736F1700EB7DBEE25BF585110B7C00B46069E8D9B93E801B34279C06364E6EFA0FE09915FD3C225D363DC608FC2B1FC14EABBBAEB58
tools\TfsCmdlets\Lib\Desktop\ru\Microsoft.VisualStudio.Services.WebApi.resources.dll
md5: B04C5650175056F72973B01A3919D7D8 | sha1: DB86F5CF8F904EEE494113B3BB8742598FB5F15E | sha256: B997BC933F00F0ED1904E4CA1A51430647FB13F9923A86D8078468E7C4319A8E | sha512: E9D78A368385B585E8968B457A8426799676FCD0E21D19DE78B18A504426ED58D7F7BC19D9C7593C4F7E391ADAC00D36DC810380BCBFF36859E1AFBD3ED5C604
tools\TfsCmdlets\Lib\Desktop\tr\Microsoft.TeamFoundation.Build.Client.resources.dll
md5: 8B7663542CFD44FA02A12D11A00F14EE | sha1: F39CCB89A9CF7A849EB7AC0DE6B099D684621F35 | sha256: 4631148C8AC1342B6E3C0D78D9519ED4417C95EC601ECC65F33AA4AC429A40A4 | sha512: C52DE05647F84AC34D8FAF3F658D237765862FE9F563F9358D5E013B7177E436394E3B4DCB2225AA9B0A8EB533AEE12E012EB984AD780A5EF73549AC2650E8C6
tools\TfsCmdlets\Lib\Desktop\tr\Microsoft.TeamFoundation.Build.Common.resources.dll
md5: 89139D7235EEB969F7311E517F8BEB0C | sha1: E6B47103D923EF2A13FE29044F26A1E2B515E7BD | sha256: 2176EA1ED88B503E1CC97AA63FD0DEB481CD43A37E6A422431BEAF884CA4206A | sha512: 5FE4B8C2B63DE6AA39A628824A70176580DF80C3B14040E51DC6BC566CD5D102644C4C0525572AFEB50ADDAA56E1B9ECE24286A3F1C7D64C41165712FA8EE68C
tools\TfsCmdlets\Lib\Desktop\tr\Microsoft.TeamFoundation.Client.resources.dll
md5: C94B3A4BA7D8C92B21CCD09BA5AAE035 | sha1: 9CE2C7DE66A6BCC5511F666588598B96CB4E23D2 | sha256: FED533DD10D6635CB51829DFF2455D79BF6E4740D9E27D473FB786E570352E59 | sha512: 1925A677CDCA8A42B50D3C159AA74D617AA9EFAB839F8CB5253D11204EB707F69711DDAB014836C8A04D47B3221795FF80FF57DA7FA9C1B7C8902FA6A825D490
tools\TfsCmdlets\Lib\Desktop\tr\Microsoft.TeamFoundation.Common.resources.dll
md5: 44556FBBDE8EED3D29B0D56A0B586342 | sha1: 7E4B86966896BEE57BABF6BF2FD06CD707C09634 | sha256: 353CD149FE1105931612D2A88AAD734EAB3FF21BABF5ADF3AC07D6B029D2BECE | sha512: 3E33FC4A4B83B664D0F46FBB2B3FC06A8A55B26CE632F245A50725F38D2818A263E6BD31C8AA23DFE46689CACA6FCF9D9B827EB70E5CDA4CFA528205A801EC63
tools\TfsCmdlets\Lib\Desktop\tr\Microsoft.TeamFoundation.Core.WebApi.resources.dll
md5: 9DE9FB768AA78524DA6F138D671A1815 | sha1: 8422659849BFFA98DE2BA6E8B7D3DB441F20AAFD | sha256: B47E336EC1CFEB69A90495649FC0AB5337DF14A8E6570A5B00FD3FCD615ECCC2 | sha512: 62E81BED5BFC829F9CEE5A82056FE69AA00FE161A5149C5B8FF7C4523037AEFA425307F6F88FA78486E7F46752DD886E83CD25CE6477DAD6C90DC53D20D71B09
tools\TfsCmdlets\Lib\Desktop\tr\Microsoft.TeamFoundation.Dashboards.WebApi.resources.dll
md5: 48C7E7BBB6F1D2E4FC8C1184D8290475 | sha1: ABF01B44CA7BDE431FC4F751D409D2E9400C7A23 | sha256: 508FF2DD6C62E747A842BD86C99847C156198E933BE332113CB1827F2D26355C | sha512: 6E2DE531A2C0BAD77AB74515919671DCBDFEC84EF1EB85892033CB0FCEE476FCF1058E6770F7BE851726B16F51268A74EEA0D74419B9369856532C1EB8A913F0
tools\TfsCmdlets\Lib\Desktop\tr\Microsoft.TeamFoundation.Discussion.Client.resources.dll
md5: 11FE2E50CFDE44D95958C5A69034BD17 | sha1: 839A1C4D2239A723F6E3B5E84346CC566B3073E4 | sha256: 38CDA2C1AF6F8F985ABFE0742477D117DC2BE92CB071F9589523ADA6DAE0B0BD | sha512: 384794B570C82EF3FBCC89FE1A8AF15B2FA952CF9BD66B4CB0C4237F114D6616F227EAA332F7D59F5C4E486CC21D0A9DAA97B90216C7A0ADC2C65282CD452C47
tools\TfsCmdlets\Lib\Desktop\tr\Microsoft.TeamFoundation.SharePointReporting.Integration.resources.dll
md5: 8DD9DCBFE69358C1F05DF81C850F6007 | sha1: 933AE8AE55A5DA4BA6DC80334033BF92293C2060 | sha256: 307FF845471F344A4BA25580BBC4BB2D78A72A75FCC8547D31BD97B20F9F5ACB | sha512: D7E1A38FA2AE845D04C8B1AE87FCEC996646D941E62F8B746DE82FD65EB82E70BCE08BEACE5C9EB23A6AAF1CD73E8711E20E5038447892F6D8ED301728EBB40E
tools\TfsCmdlets\Lib\Desktop\tr\Microsoft.TeamFoundation.TestImpact.Client.resources.dll
md5: 807DEAE57C3EFF48B5DCA0FA4E07B0F8 | sha1: 18A41A6E530FDCE4A0B375048BB324118335E341 | sha256: 2B81CA97E577BC2A87EE4E432F60D7779E4FA3455F2A4336917EFDD61E6822D8 | sha512: D72DB38663E8BFE9EB8601DA9545F7DC28A4048DF7674CC5DBD626330A094773977E72A0BD64D8F5DA3FFD208168B74238B1653C80186877C5562EE530020C0C
tools\TfsCmdlets\Lib\Desktop\tr\Microsoft.TeamFoundation.TestManagement.Client.resources.dll
md5: AB951F533A4DA93611563C0D22F428B8 | sha1: 4F1091BDB60EEC34D59047F36DDD15D2B671A686 | sha256: B7D42ADF5E968BFD74B05DEB87B66687B5ADF8E742A8E6BF9EA2A8E990FD5753 | sha512: 73A4F5F91FA7D8721B2E38580C99DC017C19B2C5C2F43093163DFF4772DCD4CD06E8AEFE96F796F452480DEA43B1EC6AA40DADE4D2B9D8DEE0D57DA5F8DA99E2
tools\TfsCmdlets\Lib\Desktop\tr\Microsoft.TeamFoundation.VersionControl.Common.Integration.resources.dll
md5: F51ADF9E2A786D9E5CA951A13A17A17E | sha1: 5CF70007E5FD679C81C41E7CC82DFC2AB8416BEC | sha256: 7A3BB91727EE42C628DECA25D7DC9BAE06F6E6E9535F9F79BB30C9D3F00A4A17 | sha512: 5C5DCFB0F799306D885F11988BFC3C956076F52C6B6D99E0641128456D1CEB1C2D07245EF6C9ABD010859D1B17D1464C5BC7E9E337917C9A824705CEB9B785D7
tools\TfsCmdlets\Lib\Desktop\tr\Microsoft.TeamFoundation.VersionControl.Common.resources.dll
md5: 8DC789328D93CFF82F85DF13F1392D31 | sha1: 4A5E9C157853BFF4E8567D32FF8342F2A91B6D24 | sha256: F7B9B23D2821A1156230D0D78E22D71650D1F52AEAF761C77434A38B80FF0E82 | sha512: 4D2EF15332D5EDAC12171DAB589500652D038EC2721C0B32FF55A96BE2C87CCFCD08A5BDADCCF25C3A2D70A621E4384888988F16F36B80F8D142C7A5757FA700
tools\TfsCmdlets\Lib\Desktop\tr\Microsoft.TeamFoundation.WorkItemTracking.Client.QueryLanguage.resources.dll
md5: 0B5B0F6EE8FA1B8BB2FB8B8596734FE9 | sha1: 8D7EAF4748A9AD380D17DF4B902D39DA8F92B0E4 | sha256: 8D07CD307D629F7931FDC43321DE12184E6C0DF129D523362606CB8EBDF276EA | sha512: 59A4CC32B621E8B8B3063041E61C5F1A79673E2C9EF18D4E5343F0BCFE009C7E6C48F1A918DD1A537E56A0002F91996DEF75DFF3CD3A60951CC3A7D12B013CBB
tools\TfsCmdlets\Lib\Desktop\tr\Microsoft.TeamFoundation.WorkItemTracking.Client.resources.dll
md5: 9032B0579BC9CFA05A5F02562DB5BF6E | sha1: CCAAA2EFEBB2050FBB2A3A95CEF9F8B116016AFB | sha256: A1F0C672C4750042C69A27D91CFF585566DA4573218CFD2D27A19A5A5C2DAD79 | sha512: 667BC505208D62071BBB6B077D45730B2406EEFC5ABA2156D6569495AE0FDF9D12AC7B43646548B626DF917C3A43FD784BD3434C0016FA11877AC39A127CBD03
tools\TfsCmdlets\Lib\Desktop\tr\Microsoft.TeamFoundation.WorkItemTracking.Common.resources.dll
md5: 77DA139C55D924E4E17B8B39E0A8F71F | sha1: 2AF9EA56B42A3210A3C12B3DDF1F59348EC1EF14 | sha256: 00F06FB0CEECC8008467A49CD7CCCCA34654E1E034F7C33E70E40E4E524A8C47 | sha512: AC09E9BAC52C64D2731ABCF47E0B8CA85FD27F185A255D50533CDDEA73AB9497E5634D80902A75E5AC47578942C4FB5C67F02AE0572E12BC7D8CFAB3C94DE168
tools\TfsCmdlets\Lib\Desktop\tr\Microsoft.TeamFoundation.WorkItemTracking.Proxy.resources.dll
md5: 527A157A899CAE1C8EAD96CC91CBEE6A | sha1: 8143ADE9502861950C68122110492F526AF4C30E | sha256: 3FDEC6317777473481BA57199EB985E898C806BB0F0BF48C41F9E25144C94577 | sha512: E05C2830830E6EB37B581447FE60FBEB23F745AFD45441472F5A0DF4C8B7A7788FEBD9C4799CFA40D407E34060E994E80C39131C118868671ED42853077E0106
tools\TfsCmdlets\Lib\Desktop\tr\Microsoft.VisualStudio.Services.Client.Interactive.resources.dll
md5: 17FEDCA258BA6F395554544D82C35377 | sha1: B522E427E13517E201BEB0FEAACBAFCEA486D19A | sha256: 88FFD8CBEEADB1CE180A4530494FF5F7D37F291BE5DAE366E48756F669265347 | sha512: 0EA53C2F7447661D26C6BF7BE86D7E944614D80CC1B64BBC24C7BF9176D485061DEB8B4CD736577A7A6737B07AE58FA9A48BD7C547387C08EF936402E9469341
tools\TfsCmdlets\Lib\Desktop\tr\Microsoft.VisualStudio.Services.Common.resources.dll
md5: DF3FA4B0D042A95C2B898EABDD853FD5 | sha1: 511460E4A44742084136D51CB25736B7F27F4A2D | sha256: C45C664A8AA57858F2E3FE04A756D9314A4B8CB3D9336A2C7E7A3B9AAC4B7AE5 | sha512: BBAD2D2D47E9AFE05830A54F075041C47C4284A7AA0353D16D612C5A4EA963219B29A2A4D100683F1DCE5B9E622ECA98DE5FF31250EDE92F112BCCEAF6AEE2D4
tools\TfsCmdlets\Lib\Desktop\tr\Microsoft.VisualStudio.Services.Feed.WebApi.resources.dll
md5: E55BA7E503A6CCCB36104917F98035CE | sha1: E2AF433CE598F9E2A472CF0347E4202C79CF1DBC | sha256: C327625C3D7BC41509442D4546D41A34DAB91032EC7B5446427FE43CFB5AD877 | sha512: 774B4553670FDD1691C9A739D463F4346E1233AE743FBBAD20F0B63C1FFCF7F0B05137BB09A92FFE04085BEC3FFCE75D9A2D10E739588B0AB9F6845DD99BB0E4
tools\TfsCmdlets\Lib\Desktop\tr\Microsoft.VisualStudio.Services.Gallery.WebApi.resources.dll
tools\TfsCmdlets\Lib\Desktop\tr\Microsoft.VisualStudio.Services.NuGet.WebApi.resources.dll
md5: 85485300C75A773F1B1177B6FAB3F209 | sha1: 0A8EF189972349A90E9811F8FEEF2380B7149677 | sha256: 60ABACBB6A514ACD1EB736DA8CAFB39A2DB8F3EC80C22B17B944FA8411CDD1DB | sha512: 16CC45A6E893DE179AC196F8FD2080B41714F311AB23CE10341BF871F2C097425816634780A30228D43FD8652649B11A35CA570BA073607E7F832BCF4548E6D5
tools\TfsCmdlets\Lib\Desktop\tr\Microsoft.VisualStudio.Services.ReleaseManagement.WebApi.resources.dll
md5: 6943EDC9D4D266483C570A0D2CF59127 | sha1: BB370B8D42A95E72A92D80BFDAE869D6416C0EFD | sha256: 4518FCD3D6F2BD99B3E20050366A838D3D2F934A3350DD35BB2558CE75D28E97 | sha512: 29DD0362BAC2A78A216F5E7525BCD4B1946E57E8544C138540264382C7E84009EE24A89F8365C51BD7111B6F8EAC9A83A00BFCACFF18964D75C39D078BB30719
tools\TfsCmdlets\Lib\Desktop\tr\Microsoft.VisualStudio.Services.Search.Shared.WebApi.resources.dll
md5: 4483B31D452F2A3481CFA2F649C91830 | sha1: 8928DFA1303D196AA8E10EFC2FCC04628AEF42CD | sha256: 544B6363A874EC05607B3A1A5182AC9A4B1CA53E025D9F0C49051894B3D246BE | sha512: 17D73AA2A244658264D5FEEE29C055BC4142702EC9CE75A48290F95A06FFD56CB719A6CB32D2070786987EE4780651E2136E1CD1CF317DE9D118D9F7FE4144E7
tools\TfsCmdlets\Lib\Desktop\tr\Microsoft.VisualStudio.Services.Search.WebApi.resources.dll
md5: 008B6AD7E690D8A8515409C048F0738C | sha1: 92FCDADEAD6C2CF4DFC162AC9A9380D60204FD2A | sha256: 9808997BFA4BC7690DEFE585615BC564A40E5C67552921A73DF363A2048A00D8 | sha512: 259E6F5B1187DE6BC167E09CC6C4D861C33D25CF6BF4E1B1ACC37068DB892A23410BFBC5F8C198B4C4EBB3E436BD7AEC9FB87D43DF11E91166A72066512E1DD0
tools\TfsCmdlets\Lib\Desktop\tr\Microsoft.VisualStudio.Services.ServiceHooks.WebApi.resources.dll
md5: EAB7932D71888568BA8FC40758CD2272 | sha1: 75044313ED5094880A816D1FC6BA350128555477 | sha256: 30075F5B3812B6D55AB881F41B2AA9BA5EBB614B10195E16D4F564417E6944EC | sha512: EFCE2146ACC0BD8FDDABD3AA20130849C764212B1AEF8C45E33C55DD3A7B94C613951DF99F40E73E73C74D0DFCA0A2CAF2B7DC6A80FAAF9F4E64ADF3955CACEF
tools\TfsCmdlets\Lib\Desktop\tr\Microsoft.VisualStudio.Services.WebApi.resources.dll
md5: 034863B8E4BBE67BD129BE083FB3820D | sha1: 5E7ABF46C3BC7FD4146B832E6536D977A9281F8D | sha256: 370E824FD69C49C59B5828E07F17370A2CC26BF5842E681923271904636297E5 | sha512: B5AFED7CBD51AA9D733C8A2D885113E8AF3E73F45F2D1C827FED87011C61FC05640E507650D9512DD0E28FFB85FB0774C3401BC5E0C486F0A0CB467C3914DEAE
tools\TfsCmdlets\Lib\Desktop\zh-Hans\Microsoft.TeamFoundation.Build.Client.resources.dll
md5: E1D1EC451E29CE809C29473CA566DC09 | sha1: 99B2EC817D8677C61E480AFBC3D0873A7F9248C8 | sha256: 32E8666DB4FD214C357E16D114F94CF7AE022B4AF97FAC794DE0D2CFAC9C9678 | sha512: ACF7A0EB09487C18A8EB5BEF6ECAE25565BF73B74623C953B9032677450C9129E9873B2CFB6C2958F547A723C83436AD65DE61CC354FC528715E2D06B913F876
tools\TfsCmdlets\Lib\Desktop\zh-Hans\Microsoft.TeamFoundation.Build.Common.resources.dll
md5: 39427AA809824BFD81199A5DDD50E675 | sha1: 363D7B01A97700D1191286E0CB3F2BC772FEC43E | sha256: 694FB452E79799F89AFE1851370ACF7C193874F0F1ECA1976E1F61AF2398B31C | sha512: C2213E201B784ABD54FCBE96F4BAE49A77BBD4281483E80616193655E61ACE6143D3A80B83BB6A8DDD8114AF1FC003135703D5F3F9804D0A0721F7C968947A97
tools\TfsCmdlets\Lib\Desktop\zh-Hans\Microsoft.TeamFoundation.Client.resources.dll
md5: 99E5EC6B43CC0DDAD1F9B696A6D8ACEF | sha1: E28ABC89A08B46DD927D5F3C93B02DF5ED3B55CD | sha256: 3371D6A77B79286CA87D41C2ADB3A2BB6E77E8B9908D16F88838648CD06D64C0 | sha512: 0494912F41E256016FAAF1E7FBCF437A2F164B9E38521624A83E33CE7A477595D0E0AF30B2C503964D59087A93F9F1F6CD76E61718CCBD6B4C0E022C61086874
tools\TfsCmdlets\Lib\Desktop\zh-Hans\Microsoft.TeamFoundation.Common.resources.dll
md5: DA30CEA41DD03119BA59E09338388A0B | sha1: 78A8B56062A87E933ED0D475CBEDA603772357B6 | sha256: 9040956B4DFA365DB04A9D22BD1DAC7DFA33B3028A30E637EFFF079B4F2BAE7D | sha512: 9ED7A1B53F4F6C8712FB70CA456CCEC85AF86DC3E816ED2F6B3462C8CB1A979E4657524EC188AB74748E02343644DA3F34E097B1389824B641DE378698D76346
tools\TfsCmdlets\Lib\Desktop\zh-Hans\Microsoft.TeamFoundation.Core.WebApi.resources.dll
md5: 8DD0F4056FB0F0F96E687E73EEB62F96 | sha1: BE81B611443E13C691DED12687C62ED4BC1F4E21 | sha256: 861C1C5610FF5A561C7F79B933DD8AABEA392B69D7F665E64FA8874A712A13DF | sha512: 1E41483E3E9F58FCAEC62848008FC6FB145117182F377D5D61075BF741FAE3182AE002A3826069B0ACD5347B1E818A5C96443F3C2880FD76AF1AEEC0609A302B
tools\TfsCmdlets\Lib\Desktop\zh-Hans\Microsoft.TeamFoundation.Dashboards.WebApi.resources.dll
md5: 0386733D943E488E48F2B39E27342A76 | sha1: 252579B6D3996B637790111EBBBA1EA5A5C0AA7E | sha256: 62D97788A8231C0889BD990F0B01C538C04D21506E603443B65804A46898F0FD | sha512: 0F2C0A2C1B604C3AEE3F8DAAB5FBBB2C8FD849648006EC9C32C5D9FD0E4958A1B4A543D104100C9FDEAC549FD96B0F7AA51D878BF4791A651CFA5A198D1DC257
tools\TfsCmdlets\Lib\Desktop\zh-Hans\Microsoft.TeamFoundation.Discussion.Client.resources.dll
md5: 00FF3DD10CE5029B5F6582656D2C9BDA | sha1: 069ECB1198A2F9B443D212C2BF2A11F347101CEE | sha256: D2759D352DE6E6DE36B7989DD5A86FE6588AD76163379E86B80A8AE27A721EB0 | sha512: C6871CBA734C0C02B4DD2D5199F138BE2DC68C96932F4DB7FC6A9DB7C55B601FAD44C5C15056B7BE20903369A0DE53F2DEF8FEB32545689F0A2181FB1E9490A4
tools\TfsCmdlets\Lib\Desktop\zh-Hans\Microsoft.TeamFoundation.SharePointReporting.Integration.resources.dll
md5: 837178FBF83B568A22D79B355F31BFDE | sha1: 82E442E6F7FED7C0BFE602B3739DC262737349AE | sha256: 0F74B81C140CF8248906D42AB5EF3814C56CC57527F031B0DE0D1DFD00C52259 | sha512: E6A30C1A41E825B8243293CD8FD8F3E9324738A085F160DBAE95748BE9867B8F4369CC87A64815B543A2FBC3391087566847BBCA373456D371D2080CE75429F4
tools\TfsCmdlets\Lib\Desktop\zh-Hans\Microsoft.TeamFoundation.TestImpact.Client.resources.dll
md5: D3EA33027C482E29BDFA99915030A4DC | sha1: 96F80660DA85892B06035341A44A6307467E0107 | sha256: B1ACD98412A448997C1E0FE8C4D4B0ED5BC359FD1E717C48807AD939F788B7FB | sha512: 7EEF5328D02A6C1808FF6291D637C052087C04C336F6F49094BC8A8E4E843E64A074D36FD0ABCE6A918E91174BE72878A0A408AB8D6AB29B5DC350AF7FA64981
tools\TfsCmdlets\Lib\Desktop\zh-Hans\Microsoft.TeamFoundation.TestManagement.Client.resources.dll
md5: FB05BE0A0ED0C3DB46B14CD0F471D513 | sha1: 95FF59D564B84D00E1082218C30EE35DFB315354 | sha256: A1A62B1F1656CD19517C2F63B831ADE1B00B042EB631FAE0FDA02F6F0552017C | sha512: 92E4595DF4C9AF507BBC2BF4610307EB6E62C4FEB5126792A4DF711C9432C6AEA31A5711A65AE9B93DE95424A131ADE520767BC76C0C025D7FB26D3B83DA474A
tools\TfsCmdlets\Lib\Desktop\zh-Hans\Microsoft.TeamFoundation.VersionControl.Common.Integration.resources.dll
md5: 2AB77A072B47DC88D3B5C3727C6D825A | sha1: 2124C365F6EF369FF19DD9CE10A1667C629CCF2F | sha256: 070BD92F4B632BAC98F311BC897EBFD81FD4DDE5BCB79338A9D3BAF9AB267F17 | sha512: 722494993DD8A07B5DFBC01AD778DF75F3DC597B8A1F9E2B6B868BBCB48191A6B48F69C7594CCA01D922C632C45A1D648B2A397CF4D722BB461C278655788B23
tools\TfsCmdlets\Lib\Desktop\zh-Hans\Microsoft.TeamFoundation.VersionControl.Common.resources.dll
md5: 94E34979D557F5E9E1461F3633F345C1 | sha1: 24C04DE80AEB8BEBA3E9B5F6D8126FF43E745307 | sha256: CE5801ECA8C5596F5F898786B8C95B25E24CFB3C4C6B1AA9E01CECD0FE8F9595 | sha512: 78CF26AF2D161E2B426E517908D29D03FEDE12813E22AFE761E6FC3D532210D687B523AD0280237C5BE95EC74EEF39BE8AF638089AF1EF35A1FD9CC36B2ACB21
tools\TfsCmdlets\Lib\Desktop\zh-Hans\Microsoft.TeamFoundation.WorkItemTracking.Client.QueryLanguage.resources.dll
md5: 09381F66E06698FC9AA7481EC635DBE5 | sha1: 7D8E82F7C1CEAB1F30C042F2633828859C81A9F8 | sha256: BF88A0231EB37681CD882DA2CFF4ED18F9E3EB93DEE802A3F264E38F2C41A8BB | sha512: 8ED57DC478BF8B0B9A20203B74F9EFD68EBCE7DB54A3E77CEAD3765252996EB5E89F05F7C033CC35B1597A13C00CD62AAA615674EFF5B6BB8E009EADA72FC47B
tools\TfsCmdlets\Lib\Desktop\zh-Hans\Microsoft.TeamFoundation.WorkItemTracking.Client.resources.dll
md5: 8F71E824556595C82C03109B211C4A7B | sha1: D55EC9F24D4567C2B3C154E44D611D5D5B81A0DE | sha256: 997E79A0B2D1039B4913CF8CA9650250E6BC2BAEFD550D1BBFD20D5429D361C8 | sha512: D37FA8CD6E47C150B21652F3AF16B8CEBA64A97C3F6784F1107525C8B71404D44E753D6877A2E90E3A2BFD3C957CB68000493F9E3A27F5E63BCAF8A6E4C2B1AB
tools\TfsCmdlets\Lib\Desktop\zh-Hans\Microsoft.TeamFoundation.WorkItemTracking.Common.resources.dll
md5: 838EF89EC2AA93709335D20060E1221C | sha1: E5C3DE2CC3CF3B278CFB8837A056CC7FE14004F8 | sha256: 05AAADC87E3F2A243E01EB90CBF9A0C1A56DA82E7017307FABCD634B1ED727C7 | sha512: C7EB0AE88B1E6A3AC3C68F7620200A68D37914E84E5BD8A61547F314C9D98D81C75E83E6FA223B78AB50A7073A2DD5BC84FA92230549B85D793691B57500A52B
tools\TfsCmdlets\Lib\Desktop\zh-Hans\Microsoft.TeamFoundation.WorkItemTracking.Proxy.resources.dll
md5: CBF9713BD94975B146751BF51818FFD3 | sha1: AF08D90367264EC87398AC48B42C95DE625F74CF | sha256: B98D8196E26E23AE59FBFCC1EC9F4B407E63039164AD5D543153937EBC390FFF | sha512: F5ECA75E5BDAD07FAAF82DB83EDEEFC0E66449780E5368FA64AD77AE036A6E5DED4AD6DB27C499656DF7E46A6B86B32F936448C3BD85130B84D5429E339FF147
tools\TfsCmdlets\Lib\Desktop\zh-Hans\Microsoft.VisualStudio.Services.Client.Interactive.resources.dll
md5: 63D232C1EF9F5E9C0F48DCEBC980CCF5 | sha1: F7AB593C89F911745616DDED205E9C448D350615 | sha256: 3DD25D08533A0E7B277A518EAA31CCFEADC027840D477351139E25ACC7D17225 | sha512: F7308CE2892E7B238CAD6F31FE15D246AEE831729BE767C4D76F0A869309C7E78EF13AA17C4E7E7F75C50C074DF1FD6F7B50E1B9923649EE4D9CAD3378ED7D42
tools\TfsCmdlets\Lib\Desktop\zh-Hans\Microsoft.VisualStudio.Services.Common.resources.dll
md5: C8FE474596F1F9BC9527D5FAB11C7E75 | sha1: 319F75FEBF6594C3A36F29749238898D17CB59FC | sha256: 2FC25C92C8623C12D1C4EE98071E28A31C1C2D8EEB9617B2EF58827B615120DF | sha512: 6A124C56580A49969265C676D36016F2DB8D768F0CF7619E4D2B773D63605F40CC266A6EFA02EED13E1737A78DC750B8AF102131B6F804A30E5486CA44FB5EB3
tools\TfsCmdlets\Lib\Desktop\zh-Hans\Microsoft.VisualStudio.Services.Feed.WebApi.resources.dll
md5: 19721129A898A9090F940B45377BB5A2 | sha1: 2DA3CBA3CF05CEC2209AF207B8CCFFCEED844083 | sha256: B701CEEBE1ACD6C730FEA63928F915998129559996CF97077C934E3D351CAFE9 | sha512: AD3FAE9D1A683C3AE6CFA16A2E9A68C09015C49E8684319774EBF11B27CF6432622F3C1D7A0F0E79923E71BE78F30696C68DD0ABA15E6D4BDB98C7C1182C2F4B
tools\TfsCmdlets\Lib\Desktop\zh-Hans\Microsoft.VisualStudio.Services.Gallery.WebApi.resources.dll
tools\TfsCmdlets\Lib\Desktop\zh-Hans\Microsoft.VisualStudio.Services.NuGet.WebApi.resources.dll
md5: C8875A7D8DC13D629D0F13CAA6FE9408 | sha1: 20524DDDDB0FD42784F49319F770FC0FE5D000AE | sha256: C3A83A4455CA3CE7879C271E111193075F5743F24897950F5B67C2908CF94B35 | sha512: 2F4F89FDDE185ECFE169AFD186BE47E6744CC49574FCCDC53F035EB122AA374C8E025C7D648A978ADEB83C4E2A4F5AC9417D9C52AEE97521D77F9DE972222A92
tools\TfsCmdlets\Lib\Desktop\zh-Hans\Microsoft.VisualStudio.Services.ReleaseManagement.WebApi.resources.dll
md5: 717BA70F7E7E2F08F7FDC2950649A833 | sha1: 85F883B4E52BB0320981054A786C21916A4E4ECC | sha256: F9D8A16FBE5D3A26FADDD7777DDD85822E229DD4B9C5A2D22995C31602D82EFC | sha512: 70104DDBC13D2269006819264FCBBD18CEED7C34EA0269CD20E9DEE8319CB79583ED40F4E0FAC47C352E35BBBB515B7E69ADCAB58EF04B00AED4A7D87B9F5FCF
tools\TfsCmdlets\Lib\Desktop\zh-Hans\Microsoft.VisualStudio.Services.Search.Shared.WebApi.resources.dll
md5: 86B2D000B9E1FE4E77613A15FBCB2ACA | sha1: 7A8CE3207B59D986798B1EDAB15A2DF6FFB4F7E4 | sha256: 4DEDAEC215E0D5539A0F1FF2F873BFE51702CB2D1C3BEC31A33637821983C588 | sha512: 38DA7F25E872EA020C00CDDB9B2CCC057299A2BE9115936A9490D6152876EDB09B80CFE8CCEBC123049E3F9EBF8193C1FFE4AD65675D022ECE58E9A5312E1540
tools\TfsCmdlets\Lib\Desktop\zh-Hans\Microsoft.VisualStudio.Services.Search.WebApi.resources.dll
md5: 0F73EECBDF5ADF06E3C615AFC5770680 | sha1: 7CD5A02FFB3BCD4FF83A75DE81CC0A0914C094DA | sha256: 52BF7023F98596D5B35F432B1D54136EFAFF737C3F4514DA6558DA416A14377D | sha512: BB26888DB4D88D7996B8538402D3603B277B7D6C2FC64C84EA86560E1A2D6F1180B6B28F9C7BDBFE3FAC47A218A78CE8A2FC1FACB39448D62C8327876C15B141
tools\TfsCmdlets\Lib\Desktop\zh-Hans\Microsoft.VisualStudio.Services.ServiceHooks.WebApi.resources.dll
md5: 2C0ED1605336D93A110B7CD375A555CA | sha1: 19C7904EF6746F87EAD69A473EB2C3B2B902AD84 | sha256: CB4847339AEAAEB591AE41FAE6AA6D8DA62883E7EA9E2AFC237C625132B4F6A2 | sha512: F806CA30DA073CF0879FBF48706DE1FF21F3C4464AD406B9977CD757C00AB436CC4DC7ABAB71738BF5545C0EC46DC8E776076D3C61A0E1A780DD40CADFEF5CD0
tools\TfsCmdlets\Lib\Desktop\zh-Hans\Microsoft.VisualStudio.Services.WebApi.resources.dll
md5: EED994260536A8EB99E518C1FBBA66F8 | sha1: C8C7C6AA6048871B6382DEDA9ADA4B5B53B6F991 | sha256: CDB43A70D3E1CEE8E02E345933F6A187B4D693FC2CBD3A260E2D9309DF2C602A | sha512: A8216719AD9D50C725422502D99A77E6C9AD84327A0D86FD024E027A9B21F7EE8DFD7528A1EEFF18DFBFF76DB3018280C0334495D4652925B9D705BF1AD3242B
tools\TfsCmdlets\Lib\Desktop\zh-Hant\Microsoft.TeamFoundation.Build.Client.resources.dll
md5: 447BFAE3CB82FC1B7ABB8546E13C45E2 | sha1: 3595BEA46DD5BFDC3E1F230E67A3EDE3AACD7D47 | sha256: 0A1F50E2A04777F53F1686BFC6B63821B4B24A0D1CC1B746B756B4CFDA16467D | sha512: 3F45FBBC3F5BE303B81C743D82E13260912426760E2EBF2F6128D664BBA0DDB432D47CCA3061F1CA5779201CF08314F25B21B997AC3B0F909B9144D4346B716D
tools\TfsCmdlets\Lib\Desktop\zh-Hant\Microsoft.TeamFoundation.Build.Common.resources.dll
md5: CBD267ABBF8D857E209D791AD05E1125 | sha1: 01F4AF9901B3342DB534948A5E0950E294A5C58D | sha256: 5A68ECD86CF90DBA5FBFCB43EDF62D0B82F76A87A3583DB0C3536C5377E5A624 | sha512: E117F3FCCDA57A157E97D53AFA33A9CCAF59FABC5F219C7F3F4BEEEFDC25C43E2AA6BF525F5C223B9F43413D4EFFB98330F025307D8954D97E1070FEA50D11BA
tools\TfsCmdlets\Lib\Desktop\zh-Hant\Microsoft.TeamFoundation.Client.resources.dll
md5: 6930D8BACDD1345E06D15C6AA26B8412 | sha1: AF29EE3B86321F84B641BB2B79AC22FBAD367841 | sha256: D6CA79A95DF3EF2CC36EC5A17E3091F481A0B5BB3E3FE24EA058DC2884252705 | sha512: 89C5FE563B134BD818CD95CBBCFB62D7A62D6D2BCC2EA68C49B49BD9A1C55978316CB14DF6BBF6E5398D598D42C2C0B6F4D76CFF66CEFCB0930DC59FF61861F4
tools\TfsCmdlets\Lib\Desktop\zh-Hant\Microsoft.TeamFoundation.Common.resources.dll
md5: 3DD1786CCE12F0666F30F47EB5818002 | sha1: 7BE84EF8AD10E8CE0A3EFB2D61D66A4F0986A6E8 | sha256: 957FE47DD725F95CB9D90D2B9B5ABCFE547EB8C4507BAA3B50A8FA9E7C8A0912 | sha512: 6F9AEA5FFC85083C737F71FB7B4C0DCEE2C9D70CCE31DE0ED17C28054C39B16A9304EA0A08A3EB84D271768D3549DAC37CC93C9C789D5EC5350F353F4C2D7848
tools\TfsCmdlets\Lib\Desktop\zh-Hant\Microsoft.TeamFoundation.Core.WebApi.resources.dll
md5: 52C470CD5E49A0489A1A0AD08836835D | sha1: 2F097E110176EA1DC976775397DD4CBA57F66B65 | sha256: BABEA7C121FD4798EAEFBBF7B4E857BCC9A14FE0EB13B06808419A4C8F95E08E | sha512: 73AE82852B265A3AF9F8B4E8D42B78AAE24A19C14E0713A5C16FD06DF34334E50B798E9E74867DAA6DE5021F0D0BFA98BFA9118E2714F88D4DF8C2C266580937
tools\TfsCmdlets\Lib\Desktop\zh-Hant\Microsoft.TeamFoundation.Dashboards.WebApi.resources.dll
md5: 0F375A7507E3A15183042F6F72063849 | sha1: 0705EB5AA0AD349D6EB9B3058A322E095E398166 | sha256: 61A07069ACEB293E51A619C15909658ADA1573373EAECA33F9869DC46A2EB674 | sha512: C20E8688E1B4BDC594EAA9D0B62F24A293BAA00FB0AE3B46E223B52A3E22B041DC0760ADE9576DFEC63A5E298AC89C0B207617627743CB06BA6DD41E7A7FED04
tools\TfsCmdlets\Lib\Desktop\zh-Hant\Microsoft.TeamFoundation.Discussion.Client.resources.dll
md5: E1D1031572091F3C71D1AB507623B68C | sha1: 825866FA1B6D65056D7CD3CA4D48575873FCDA36 | sha256: 8E1C5E5C85D9EBEEF54F80FFE47A4CB920A2ADFE89CFE9639F2CBB7D0F5D66C6 | sha512: 8D2898AF54B93BDD12476D5143698AF826BC09285066D12D1F822A02C48F6F06A4B4FD0AA814C40F7B3CFFDE92F7217437A4B2C3D50D8FAC31134DA9605F2A1B
tools\TfsCmdlets\Lib\Desktop\zh-Hant\Microsoft.TeamFoundation.SharePointReporting.Integration.resources.dll
md5: 0D3324FA766BA3C7B8DA3A2A0A8DF3C6 | sha1: B94396B897E092055EEA32FE9B1D4FB2A65D8006 | sha256: A278C40E7830BADC9B268AD5F0D838BDC068587732F6200D385FB447822F5A22 | sha512: BC5B0E706635B08E31EBD433DAF02C77BFD88BA4017E7B657909C0A13DA091F7C45D9A91D657F2FB5401F27F38C0037BE0558A9D567C2C17408321CA48AA290E
tools\TfsCmdlets\Lib\Desktop\zh-Hant\Microsoft.TeamFoundation.TestImpact.Client.resources.dll
md5: 708BD3C837F4DD9521396089D7F03350 | sha1: A45F5F5D0E043562CB5687D7FE9C54AAFDDEF198 | sha256: B202CF011EAF22848642DC6FB2AED3060C21E621340B94065B88A9BE345CB0A1 | sha512: 344D0BEDA9BEA99444E2A3D655D997BC0884B4BF5BA4FB1E9C7B7698A53F0696C9298AF0C7381BAC6E333116B9270E7BC61CDB4BF5EC49ECB8517DE963BFDA51
tools\TfsCmdlets\Lib\Desktop\zh-Hant\Microsoft.TeamFoundation.TestManagement.Client.resources.dll
md5: D977B8020B600C64DAA58BAFDF14FD54 | sha1: 3EB50C99671ED8642E86CFC3F2D75932D6F9FFCA | sha256: 319E4F07AF4E2B6AAA5538D52123E0949E94BEF594AA2E57C486B3B67B7FA750 | sha512: 700E64ECBCA864632005B151BDEC833FF624CAE03F75CE2C439CD344D2B8E73BE6AB42035E0428BA6BE766879826B2A49E1EE0047061EADA27C505199ABA8266
tools\TfsCmdlets\Lib\Desktop\zh-Hant\Microsoft.TeamFoundation.VersionControl.Common.Integration.resources.dll
md5: 9FAC4015C4A485A05953F9134DE943C0 | sha1: 12E9C0F75C2488568E137EE75F450E17F22DA25A | sha256: 26EF1ADD91AC21B7BA25B1C27E91DD372BDF5D693A62B39C18B37D671EF2CF75 | sha512: C5301A95C1A95695C88FC20C9C288919776F9954680617C87C2D5C12E9F5970509525BED78FE07724219F7C97BC3043A313CBBA54DD3A2700F3ADC4771071105
tools\TfsCmdlets\Lib\Desktop\zh-Hant\Microsoft.TeamFoundation.VersionControl.Common.resources.dll
md5: FFD0AD8D47DCDA0BD66B03A20746911F | sha1: AEE75AF16A6773A557252338D7ACA4705AEDA1AD | sha256: D5B8F5E72F5A553CA6FE111AE660A6F21151660C3F940DC74722CA9E79E5DF2C | sha512: 4932A5B40B94644FD96E78298C7334FC1A868B414CA14B75885BE716F51A5BBACDD44C58DDED9351551103B403B8B6EF8AEA7FA5B34139C9296FA128147FF6B3
tools\TfsCmdlets\Lib\Desktop\zh-Hant\Microsoft.TeamFoundation.WorkItemTracking.Client.QueryLanguage.resources.dll
md5: 3FBE164D55B5C18EF2EEC59849155E39 | sha1: D2C8964E0C58D13A78CCD521851CF0EDBB41FBEF | sha256: 364D5FF5B253628F8D4F4BDB206F552737FE61961173A6A889C30D4F56377490 | sha512: B0009DC4B9162EC9C8C61525D33AAEA96FB513FC143A140835E5E8ABDD42674D0854ED0E7D5E286D41D8D59DDEE9E94390C8C008747B721E0E3015421F04513B
tools\TfsCmdlets\Lib\Desktop\zh-Hant\Microsoft.TeamFoundation.WorkItemTracking.Client.resources.dll
md5: 223357BA7DC6CC6FF1C06C1773E5B9AB | sha1: 86AA16DD44DA48B933AF858BA4628F0656FA9BBC | sha256: A6D154D189A703FBD3C0C6C0BD885644C9020C474499843D98578029C7F2BB44 | sha512: A2EB5BECD3D27D8AF4F10900CDB7953E78CFE3A1A014F4E7395B793739CC521B41450D662B747F556D4DC2B2551B6C8DABA2D88891233F928DA8E271085567FE
tools\TfsCmdlets\Lib\Desktop\zh-Hant\Microsoft.TeamFoundation.WorkItemTracking.Common.resources.dll
md5: 7DE7CD2A988B8B71EB7E22939D52E3D2 | sha1: DD45183C0B290EF9113A91638B8BD9FB41E36B3A | sha256: D68C1ECEAC87398BAC0AB4B7E184D4CFE263741E3F0F105EDB3A3CB99EE46EA0 | sha512: A69D09B47269FF9CF67D4CF1A4CB76C83C5D697FB38AF02BF79449354F0A11AF80DB812F76AEE21607F69F0FD01D3210CDE666AAA0D26E6DF4D58ED4E65B0EDE
tools\TfsCmdlets\Lib\Desktop\zh-Hant\Microsoft.TeamFoundation.WorkItemTracking.Proxy.resources.dll
md5: 4D435EF7F6D3D1A3AA4007D65E4C2363 | sha1: 4F0F5A6099A48F125910A7D87B13097C792406D8 | sha256: AD05C78D0495068BDC6A67ADA685428F245CE03B518B02EABD5EC959AD905153 | sha512: 5F8225B6EA2AA04F91429A486850994507FA124EC003D5C4DAE0ED90DEFA00678B81F2F20295B2032F5D1426E7AF80501C5020A55C256D190B18B940431B6439
tools\TfsCmdlets\Lib\Desktop\zh-Hant\Microsoft.VisualStudio.Services.Client.Interactive.resources.dll
md5: 13E6FE4B57BB548A1E734647EFBB290E | sha1: 4B487F406219715A8E4160D897C40B9357CA1221 | sha256: 4F58677008B4B9DB3B8BF9188D987DA177C0570FB0269C631C1659B9A786B71E | sha512: 5D0C8AF491E3121DFFAFC66DABF92406E1A47BE26F536A0AFA30F2FA7022FBFF4CBCD7D457A3A151D623234D1ADD8E272DBAA644EA68F047A98BEA99DF205C83
tools\TfsCmdlets\Lib\Desktop\zh-Hant\Microsoft.VisualStudio.Services.Common.resources.dll
md5: F655D44DC3F227072C422D4AE56AAC89 | sha1: 1612F9A62C5FCBC739C162C4969651C21DE212FA | sha256: DF8BDBFB9F207CD94F2C4845C8766B9FB326DD56EC9DEDC2DE739ADDEBBAC25F | sha512: 3409FE916CE71F6A9534898E7911410077956CA8510072FBF06B41DE77B6A538765534C4247E33A05AA02237E677F7E85FB2581ADD6CB4298078286EA7BAB679
tools\TfsCmdlets\Lib\Desktop\zh-Hant\Microsoft.VisualStudio.Services.Feed.WebApi.resources.dll
md5: 2F2394DF46932F0DB796531D4719C4D8 | sha1: 793873F016A30596379F948C16C4968E2C255ACE | sha256: 198E8EBA6AC269F9F73973F94FD9FECF19C68F839584FD0B8C3BE4684CC92BEA | sha512: AF1D42E299FAECED4D370E40CBBC04C2B2AFAC1323D8C29F23118D44B27F389B3D960697AF2686C160219CD1CD772292EA5D104D4A0318EA7A4544B351AA19E6
tools\TfsCmdlets\Lib\Desktop\zh-Hant\Microsoft.VisualStudio.Services.Gallery.WebApi.resources.dll
tools\TfsCmdlets\Lib\Desktop\zh-Hant\Microsoft.VisualStudio.Services.NuGet.WebApi.resources.dll
md5: 0599441A15AD5849443D938D8A1DB689 | sha1: 00816EC354AF2E39AB80DD391DD2E81F43B6F295 | sha256: A58C1678FC3C03832630F65FEA7E43C10F3C785A7D82201214146C0E362AA211 | sha512: 71FF5DD2B99692602DF660F9A8A13BA3CBF4C022AE41879B3FB4B578D43F01D6C67FACDBDDD89844966444D26B774C187A712D258B03AB0F87FBEE6F481BA5B9
tools\TfsCmdlets\Lib\Desktop\zh-Hant\Microsoft.VisualStudio.Services.ReleaseManagement.WebApi.resources.dll
md5: 4CF92C769C227CEFFEBBDE3A096D3F9A | sha1: AEC047395598C80A8F785D7A67FA57E10413C76C | sha256: D5B8B4AB68BB111FB528C73D47F1A072348BF68E58F009FB6C02486818F1F109 | sha512: 92B0AB4497150B017A0EBAF1B6FF802D6CCC3F536F50FA1F5864303107B2CBA0ED3A557F16187356CD211FDD5A76227F01C4710C640A60DA544ED03910E64F5A
tools\TfsCmdlets\Lib\Desktop\zh-Hant\Microsoft.VisualStudio.Services.Search.Shared.WebApi.resources.dll
md5: 8926E2952052E93E3DD763AF0BE691E4 | sha1: 4B2C07A55B39CBCFD0AAACC4EC4DD5EA190095BB | sha256: 5AC36B191D2EC368F7FB1CF98303243BA228A007B5B09CDF3CC308BD78F9D023 | sha512: 9DE0EAECB2C299E64A27CD0224DEF448AA3651527A6CCC5167A92FB19D5610BA0A31F699944A4F59A24245CD543C54983D90F63469825D9AD46A6F171AC46009
tools\TfsCmdlets\Lib\Desktop\zh-Hant\Microsoft.VisualStudio.Services.Search.WebApi.resources.dll
md5: 54BA44268A31E581D3B63A314F744EA9 | sha1: D0ED34D0B842168111A87599687253F9B7D9A997 | sha256: B5DF47BC5005F85126EE9ED09BD221F308FB1CEC17F30E98191610030B25C64F | sha512: 8F7800644F8BF74177A0D6E17383141507DAAA5368B5105C7BE80E0FF56FC96B90F29FFA9C523E591268631E324722CD62C466798CAB010FACB68F191EE4399F
tools\TfsCmdlets\Lib\Desktop\zh-Hant\Microsoft.VisualStudio.Services.ServiceHooks.WebApi.resources.dll
md5: 3CD7F509764BC3C45D9C340F46063DD6 | sha1: C89D79AF38CFDF14CB63B6BD18129D03FC0F7D2C | sha256: 542C2C42D7EAC28F71537932AFB2DD90632D910F79D54A586A337F4C3B231D29 | sha512: FC87F18E219703756D82217CF555D448BBC17CE7CECFFE578635DF783003C1BBBD946FB10E1D8A3E0D586FF4B1FB2484D679592B2C56CB20ABD6E7E7960DA268
tools\TfsCmdlets\Lib\Desktop\zh-Hant\Microsoft.VisualStudio.Services.WebApi.resources.dll
md5: E7F22592493B4FEB8A6C9C9AB6A96A25 | sha1: 4693ED7746EEB956E83F3E4716931C035B105816 | sha256: E77DE3FD6B42D677B8BBB126A26D09F769B63B7438743193843398821EE4C958 | sha512: AA79CD0E1EFA76B7A24DFF50E80EE50560CC79108F3E7F8DBE096BDE1EF6BCB6FFBB3CCF24D798AB0BA76836C0F3331C0DDE53E2B9FED27B3246173C50094650

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 51 Thursday, July 21, 2022 Approved
TfsCmdlets 2.4.0 75 Monday, May 23, 2022 Approved
TfsCmdlets 2.3.2 47 Wednesday, May 18, 2022 Approved
TfsCmdlets 2.3.1 56 Saturday, April 9, 2022 Approved
TfsCmdlets 2.3.0 49 Sunday, April 3, 2022 Approved
TfsCmdlets 2.2.1 57 Friday, February 11, 2022 Approved
TfsCmdlets 2.2.0 49 Saturday, February 5, 2022 Approved
TfsCmdlets 2.1.4 75 Tuesday, November 30, 2021 Approved
TfsCmdlets 2.1.3 51 Thursday, November 25, 2021 Approved
TfsCmdlets 2.1.2 71 Friday, September 10, 2021 Approved
TfsCmdlets 2.1.1 62 Wednesday, September 8, 2021 Approved
TfsCmdlets 2.0.0 64 Tuesday, August 3, 2021 Approved
TfsCmdlets 2.0.0-rc0005 71 Sunday, April 18, 2021 Exempted
TfsCmdlets 2.0.0-rc0004 71 Monday, April 5, 2021 Exempted
TfsCmdlets 2.0.0-rc0003 55 Friday, February 19, 2021 Exempted
TfsCmdlets 2.0.0-rc0002 60 Tuesday, December 1, 2020 Exempted
TfsCmdlets 2.0.0-beta0015 69 Tuesday, July 21, 2020 Exempted
TfsCmdlets 2.0.0-beta0014 51 Sunday, July 19, 2020 Exempted
TfsCmdlets 2.0.0-beta0013 56 Saturday, July 18, 2020 Exempted
TfsCmdlets 2.0.0-beta0010 135 Thursday, September 12, 2019 Exempted
TfsCmdlets 2.0.0-beta0009 80 Tuesday, September 10, 2019 Exempted
TfsCmdlets 2.0.0-beta0008 89 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 320 Saturday, December 24, 2016 Exempted
TfsCmdlets 1.0.0-alpha7 285 Thursday, October 22, 2015 Exempted
TfsCmdlets 1.0.0-alpha6 264 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 296 Thursday, September 3, 2015 Exempted
TfsCmdlets 1.0.0-alpha1 293 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