Is it possible to export all build and release definitions from VSTS in a single go ?
I know it was possible with TFS,
Is it possible to export all build and release definitions from VSTS in a single go ?
I know it was possible with TFS,
Well, by the same token, you can use Azure Devops API to export those.
Unlike TFS you could use tfpt command line. In Azure DevOps, the simple way is using Rest API to do this.
You could use list build/release definition first, it should return a json file.
Normally, when you import the JSON file, you will get a new build definition.
Besides, if you are using YAML builds which will configure your CI process as code. You could directly copy .yml
files.
The release definitions are the same as build.