This module is built using psake and tested using Pester.
To execute any build task simply use the following where task list is one or more from the numbered list below:
Invoke-psake -buildFile ./build/tasks.ps1 -taskList [task list]
- Build - Creates a ready to distribute module with all required files
- Check-And-Build - An internal task that conditionally executes a build if no build output is found
- Clean - Deletes all build artifacts and the distribution (dist) folder
- Default - Executes test
- Init - Initializes the build chain by installing dependencies
- Test - Executes all unit tests
- Publish - Publishes the module and all submodules to the PSGallery
To output the latest info on all of the build tasks execute Invoke-psake ./build/tasks.ps1 -detailedDocs
.