vsteam
                                
                                
                                
                                    vsteam copied to clipboard
                            
                            
                            
                        PowerShell module for accessing Azure DevOps Services and Azure DevOps Server (formerly VSTS or TFS)
Fixes #447 ## PR Checklist - [ ] [Write Help](https://github.com/DarqueWarrior/vsteam/blob/master/.github/CONTRIBUTING.md#write-help) - [ ] [Write Unit Test](https://github.com/DarqueWarrior/vsteam/blob/master/.github/CONTRIBUTING.md#write-unit-test)
### Proposal I wanted to create Add, Get, Remove, Update -VSTeamEnvironment cmdlets [API documentation](https://docs.microsoft.com/en-us/rest/api/azure/devops/distributedtask/environments?view=azure-devops-rest-6.0) I have a preview working version of Get-VSTeamEnvironment with this syntax ```powershell Get-VSTeamEnvironment [-Id] -ProjectName ```...
### Background Because the lack of a specific API for this, or because an unexpected behaviour of the current API , it is hard to distinguish between project scoped feeds...
### Steps to reproduce ```powershell Test-VSTeamYamlPipeline -PipelineId 21 -FilePath '.\azure-pipelines.yml' -Branch 'feature/coverage' -ProjectName 'XXXXX' ``` ### Expected behavior The job would run without error and the Branch parameter was supported...
### Steps to reproduce ```powershell $build = Get-VSTeamBuild -Definitions $pipelineId -ResultFilter succeeded -Top 1 $artifacts = Get-VSTeamBuildArtifact -id $build.id Invoke-VSTeamRequest -NoProject -area resources -resource Containers -id "$($artifacts.id)/drop" -QueryString @{ itemPath...
### Steps to reproduce When using `Set-VSTeamAccount` with tab completion for parameters, the `-Level` parameter does not auto-complete if it's not declared before the `-SecurePersonalAccessToken` parameter. You can still successfully...
### Steps to reproduce ```powershell Just run the _Add-VSTeamWorkItem_ cmdlet with **User Story** as _WorkItemType_ parameter. ``` ### Expected behavior I expected that a new _user story_ will be created....
### Proposal Being able to add Comments to WorkItems would be of great help. Using REST it needs a different Endpoint and seemingly isn't implemented yet? ### Solved Problem Automated...
# PR Summary This PR is related to #518 Adding the below changes around the Update-VSTeamWorkItem to enable adding relations to another workitems. This could be achived using: - Update-VSTeamWorkItem:...
### Proposal I wanted to delete all disabled agents from every agent pool so, intuitively, I wrote `Get-VSTeamPool | Get-VSTeamAgent | Where {-not $_.Enabled} | Remove-VSTeamAgent` but got this error...