Public/Work/Show-EdenServiceWorkItemList.ps1
function Show-EdenServiceWorkItemList { <# .SYNOPSIS Showing work item list. .DESCRIPTION Showing work item list. by calling the local './Eden/Work/Show-ServiceWorkItemList.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 "Work/Show-ServiceWorkItemList" ` -SettingsName $SettingsName ` -CommandGroup "Work" ` -Message "Showing work item list." ` -AdditionalArguments $AdditionalArguments } New-Alias ` -Name e-wil ` -Value Show-EdenServiceWorkItemList ` -Force |