Public/Documentation/Show-EdenServiceDocsReference.ps1
function Show-EdenServiceDocsReference { <# .SYNOPSIS Showing service reference docs. .DESCRIPTION Showing service reference docs. by calling the local './Eden/Documentation/Show-ServiceDocsReference.ps1' script. #> [CmdletBinding()] param( # The name of the local or global settins file to pass to the Eden script. [Alias("sn")] [String] $SettingsName, # The additional arguments to pass to the Eden script. [Alias("aa")] [HashTable] $AdditionalArguments ) Invoke-EdenCommandStandardFlow ` -LocalCommandPath "Documentation/Show-ServiceDocsReference" ` -SettingsName $SettingsName ` -CommandGroup "Documentation" ` -Message "Showing service reference docs." ` -AdditionalArguments $AdditionalArguments } New-Alias ` -Name e-docsr ` -Value Show-EdenServiceDocsReference ` -Force |