Gz-Yaml.psm1
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
#Add-Type "./bin/netstandard1.3/YamlDotNet.dll" Get-Item "$PSScriptRoot/public/*.ps1" | ForEach-Object { . "$($_.FullName)" } Export-ModuleMember -Function @( 'ConvertTo-GzYaml', 'ConvertFrom-GzYaml', 'Add-GzYamlAlias', 'Remove-GzYamlAlias' ) |