Public/Building/Publish-EdenService.ps1

function Publish-EdenService {
    <#
        .SYNOPSIS
        Publishing the service.

        .DESCRIPTION
        Publishing the service. by calling the local './Eden/Building/Publish-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/Publish-Service" `
        -SettingsName $SettingsName `
        -CommandGroup "Building" `
        -Message "Publishing the service." `
        -AdditionalArguments $AdditionalArguments
}
New-Alias `
    -Name e-bp `
    -Value Publish-EdenService `
    -Force