Public/Documentation/Show-EdenServiceDocs.ps1
function Show-EdenServiceDocs { <# .SYNOPSIS Showing service docs. .DESCRIPTION Showing service docs. by calling the local './Eden/Documentation/Show-ServiceDocs.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-ServiceDocs" ` -SettingsName $SettingsName ` -CommandGroup "Documentation" ` -Message "Showing service docs." ` -AdditionalArguments $AdditionalArguments } New-Alias ` -Name e-docs ` -Value Show-EdenServiceDocs ` -Force |