-
Notifications
You must be signed in to change notification settings - Fork 156
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Adding Process Template Support * Touching up Help * Touching up Changelog * Adding formatted views * Fixed two failing tests. * Update version to 5.0.1
- Loading branch information
1 parent
20601b8
commit 1f75f9c
Showing
15 changed files
with
601 additions
and
37 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,81 @@ | ||
<!-- #include "./common/header.md" --> | ||
|
||
# Get-VSTeamProcess | ||
|
||
## SYNOPSIS | ||
|
||
<!-- #include "./synopsis/Get-VSTeamProcess.md" --> | ||
|
||
## SYNTAX | ||
|
||
## DESCRIPTION | ||
|
||
The list of Processs Templates returned can be controlled by using the top and skip parameters. | ||
|
||
You can also get a single Process Template by name or id. | ||
|
||
You must call Add-VSTeamAccount before calling this function. | ||
|
||
## EXAMPLES | ||
|
||
### -------------------------- EXAMPLE 1 -------------------------- | ||
|
||
```PowerShell | ||
PS C:\> Get-VSTeamProcess | ||
``` | ||
|
||
This will return all the Process Templates | ||
|
||
### -------------------------- EXAMPLE 2 -------------------------- | ||
|
||
```PowerShell | ||
PS C:\> Get-VSTeamProcess -top 5 | Format-Wide | ||
``` | ||
|
||
This will return the top five Process Templates only showing their name | ||
|
||
## PARAMETERS | ||
|
||
<!-- #include "./params/ProcessName.md" --> | ||
|
||
### -Top | ||
|
||
Specifies the maximum number to return. | ||
|
||
```yaml | ||
Type: Int32 | ||
Parameter Sets: List | ||
Default value: 100 | ||
``` | ||
### -Skip | ||
Defines the number of Processs Templates to skip. The default value is 0 | ||
```yaml | ||
Type: Int32 | ||
Parameter Sets: List | ||
Default value: 0 | ||
``` | ||
### -Id | ||
The id of the Process Template to return. | ||
```yaml | ||
Type: String | ||
Parameter Sets: ByID | ||
Aliases: ProcessID | ||
``` | ||
## INPUTS | ||
## OUTPUTS | ||
## NOTES | ||
## RELATED LINKS | ||
[Add-VSTeamAccount](Add-VSTeamAccount.md) | ||
[Add-VSTeamProject](Add-VSTeamProject.md) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
### -Name | ||
|
||
Specifies the process template name for which this function operates. | ||
|
||
You can tab complete from a list of available process templates. | ||
|
||
```yaml | ||
Type: String | ||
Required: true | ||
Position: 0 | ||
Accept pipeline input: true (ByPropertyName) | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Returns a list of process templates in the Team Services or Team Foundation Server account. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -36,6 +36,7 @@ LONG DESCRIPTION | |
· Build | ||
· Build Definitions | ||
· Core | ||
· Processes | ||
· Projects | ||
· Team Members | ||
· Teams | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.