Last Updated: 9 September 2022
You may have alread seen our article on creating custom build tasks using Powershell and a custom .Net Core / .Net 6 CLI tool written in C#. It is also possible to create a true cross-platform custom build task that uses node.js and Typescript instead of the Powershell / C# combination described in that article.
It is possible to package and publish your custom tasks to make them available for installation into any Azure DevOps organization, or to just the organizations you choose. This is appropriate if, for example, you intend to allow a more self-service approach to your DevOps teams, or if you want to share your tasks publicly. This guide assumes you already have node.js installed, and have the TFX extension. See our Powershell & C# custom task guide for how to do this.
Create a folder called 'MyCustomTask', then from a command line within that directory, initialize your task:
This adds some package dependencies, including a utility task library provided by Microsoft. This library provides functions to interact with Azure DevOps and provides logging, ways to with user parameters, and the ability to indicate success/failure. It also provides functions to run external tools and commands. If you are running these commands from Powershell and get an error from the 'tsc' comnmand around execution policies, run the following and retry:
Create a file called task.json, and save it into your MyCustomTask folder. This is broadly the same as the one we previously discussed in the Powershell / C# example, but specifies a node.js target instead:
Create a script using the scaffolding template below, this will be where the bulk of your logic will go:
Compile your .ts file into .js using the following command (run from inside the folder you created above). If successful, you will now also have an index.js file present:
Use the following commands to upload your new task to Azure DevOps:
For further information on installing node.js, the TFX command line tool, and setting up a Personal Access Token to authenticate with Azure DevOps, see our original article on custom build tasks with Powershell and C#.