Azure Devopstasks for using Chocolatey during deployment.
Are these Azure Devops extensions helping you?
With these tasks you can use Chocolatey in Azure Devops or TFS. Either install chocolatey self, or check if it installed, or just install one of the many packages available through Chocolatey.
For available packages check Chocolatey website
Will download and install/upgrade Chocolatey on the server. Will only install if not already installed.
- Upgrade (if needed): If already installed, it will upgrade Chocolatey if needed.
Installs a package using Chocolatey.
- Package: The package ID of the package to install. Check https://chocolatey.org/ for available packages
- Version: Specific version of the package to install. Leave empty if you want to install the latest stable version.
- Alternate package source: The source to find the package(s) to install. Special sources include: ruby, webpi, cygwin, windowsfeatures, and python. To specify more than one source, pass it with a semi-colon separating the values (-e.g. 'source1;source2'). Defaults to default feeds.
- Other options: Add extra options or switches as needed.
- Merged PR 8: Fixed version param for package installation (by miccha).
- Added support for alternate package source (-s / --source) and you now can add custom other flags as needed.
- Made tasks available for build pipeline.