diff --git a/.docs/Add-VSTeamProject.md b/.docs/Add-VSTeamProject.md index 1de9299a..c1017c83 100644 --- a/.docs/Add-VSTeamProject.md +++ b/.docs/Add-VSTeamProject.md @@ -34,17 +34,6 @@ template and TFVC source control. ## PARAMETERS -### ProjectName - -The name of the project to create. - -```yaml -Type: String -Aliases: Name -Required: True -Position: 0 -``` - ### ProcessTemplate The name of the process template to use for the project. @@ -72,6 +61,17 @@ Switches the source control from Git to TFVC. Type: SwitchParameter ``` +### Visibility + +The visibility of the project. + +```yaml +Type: String +Accepted values: private, public +``` + + + ## INPUTS ## OUTPUTS diff --git a/.docs/Update-VSTeamProject.md b/.docs/Update-VSTeamProject.md index 88926488..6764f163 100644 --- a/.docs/Update-VSTeamProject.md +++ b/.docs/Update-VSTeamProject.md @@ -22,6 +22,14 @@ Update-VSTeamProject -Name Demo -NewName aspDemo This command changes the name of your project from Demo to aspDemo. +### Example 2: Make a project public + +```powershell +Update-VSTeamProject -Name Demo -Visibility public +``` + +This command makes your project public. + ## PARAMETERS ### NewName @@ -51,6 +59,15 @@ Aliases: ProjectId Accept pipeline input: true (ByPropertyName) ``` +### Visibility + +The visibility of the project. + +```yaml +Type: String +Accepted values: private, public +``` +