Insert a useful description for the LogScrubber project here.
Remember, it's the first thing a visitor will see.
- Don't touch the psm1 file
- Place functions you export in
functions/
(can have subfolders) - Place private/internal functions invisible to the user in
internal/functions
(can have subfolders) - Don't add code directly to the
postimport.ps1
orpreimport.ps1
. Those files are designed to import other files only. - When adding files & folders, make sure they are covered by either
postimport.ps1
orpreimport.ps1
. This adds them to both the import and the build sequence.
To create a PR validation pipeline, set up tasks like this:
- Install Prerequisites (PowerShell Task; VSTS-Prerequisites.ps1)
- Validate (PowerShell Task; VSTS-Validate.ps1)
- Publish Test Results (Publish Test Results; NUnit format; Run no matter what)
To create a build/publish pipeline, set up tasks like this:
- Install Prerequisites (PowerShell Task; VSTS-Prerequisites.ps1)
- Validate (PowerShell Task; VSTS-Validate.ps1)
- Build (PowerShell Task; VSTS-Build.ps1)
- Publish Test Results (Publish Test Results; NUnit format; Run no matter what)