Public/Building/Show-EdenServiceBuildReportPublished.ps1

function Show-EdenServiceBuildReportPublished {
    <#
        .SYNOPSIS
        Showing published build report.

        .DESCRIPTION
        Showing published build report. by calling the local './Source/Building/Show-ServiceBuildReportPublished.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/Show-ServiceBuildReportPublished" `
        -SettingsName $SettingsName `
        -CommandGroup "Building" `
        -Message "Showing published build report." `
        -AdditionalArguments $AdditionalArguments
}
New-Alias `
    -Name e-bbrp `
    -Value Show-EdenServiceBuildReportPublished `
    -Force