PSDependScripts/Noop.ps1
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 |
<# .SYNOPSIS Display variables that a dependency script would receive. Used for testing and validation. .DESCRIPTION Display variables that a dependency script would receive. Used for testing and validation. .PARAMETER Dependency Dependency to process .PARAMETER StringParameter An example parameter that does nothing #> [cmdletbinding()] param ( [PSTypeName('PSDepend.Dependency')] [psobject[]]$Dependency, [string[]]$StringParameter ) Write-Verbose "Starting noop run with $($Dependency.count) sources" [pscustomobject]@{ PSBoundParameters = $PSBoundParameters Dependency= $Dependency DependencyParameters = $Dependency.Parameters GetVariable = (Get-Variable) ENV = Get-Childitem ENV: } |