We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Use the include function to access functions that are in another script file.
The following is an example:
Include ".\build_utils.ps1" Task default -depends Test Task Test -depends Compile, Clean { } Task Compile -depends Clean { } Task Clean { }
You can have more than 1 include file in your script if you need to include multiple script files.
Next – How can I force the build to fail if a command-line program I run from a task fails?