Public/Building/Build-EdenService.ps1
function Build-EdenService { <# .SYNOPSIS Building the service. .DESCRIPTION Building the service. by calling the local './Eden/Building/Build-Service.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 "Building/Build-Service" ` -SettingsName $SettingsName ` -CommandGroup "Building" ` -Message "Building the service." ` -AdditionalArguments $AdditionalArguments } New-Alias ` -Name e-bb ` -Value Build-EdenService ` -Force |