psake/src/public/BuildSetup.ps1
|
function BuildSetup { <# .SYNOPSIS Adds a scriptblock that will be executed once at the beginning of the build .DESCRIPTION This function will accept a scriptblock that will be executed once at the beginning of the build. .PARAMETER setup A scriptblock to execute .EXAMPLE A sample build script is shown below: Task default -depends Test Task Test -depends Compile, Clean { } Task Compile -depends Clean { } Task Clean { } BuildSetup { "Running 'BuildSetup'" } The script above produces the following output: Running 'BuildSetup' Executing task, Clean... Executing task, Compile... Executing task, Test... Build Succeeded .LINK Assert .LINK Exec .LINK FormatTaskName .LINK Framework .LINK Invoke-psake .LINK Properties .LINK Task .LINK BuildTearDown .LINK TaskSetup .LINK TaskTearDown #> [CmdletBinding()] param( [Parameter(Mandatory = $true)] [scriptblock]$setup ) $psake.context.Peek().buildSetupScriptBlock = $setup } |