Donovan Brown

Results 46 comments of Donovan Brown

Hey @AlanMcBee feel free to give it a try. Just follow the coding style in the other functions.

What was the error you were getting? Did you lose connection to the server? Before I can determine if this is a good solution I need to make sure I...

Instead of changing Update-VSTeamBuildDefinition should we add a Pause-VSTeamBuildDefintion and Resume-VSTeamBuildDefintion? Each of those can take the steps @SebastianSchuetze states above... Thoughts?

Looking at the [docs](https://docs.microsoft.com/rest/api/azure/devops/security/access%20control%20entries/set%20access%20control%20entries?view=azure-devops-rest-5.1&WT.mc_id=github-github-dbrown) this looks more like a request for the Azure DevOps team than this module. Once the API provides it we can offer it.

All the code around $env:TEAM_PROCESS makes me very uncomfortable. If you want to set a default for it use ``` $Global:PSDefaultParameterValues["*-vsteam*:ProcessTemplate"] = "yourTemplate" ``` ProjectName is an exception because it...

> @SebastianSchuetze > > > > @jhoneill one request: Could you tell us when your PRs are finished? You seem to be able to work on it in your work...

I will be returning to this PR soon. I used the $env:XXX for defaults in my last PR so I will work on changing the way the current defaults are...

Hey, @jhoneill would you be open to a Teams meeting to work through this PR? There are some design decisions I want to make sure I understand. I want the...

Given the links above you should be able to call the API with the module today. Just use the ```Powershell Invoke-VSTeamRequest ``` Invoke-VSTeamRequest can all any API even if we...