TSG.AzureDevOps.psm1
|
# Dot-source the contents of named directories foreach ($dirName in @('shared', 'functions')) { Get-ChildItem -Path (Join-Path -Path $PSScriptRoot -ChildPath $dirName) -Filter *.ps1 | ForEach-Object { . $_.FullName } } Export-ModuleMember -Function * -Cmdlet * |