Public/Building/Show-EdenServiceBuildReport.ps1
function Show-EdenServiceBuildReport { <# .SYNOPSIS Showing build report. .DESCRIPTION Showing build report. by calling the local './Source/Building/Show-ServiceBuildReport.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-ServiceBuildReport" ` -SettingsName $SettingsName ` -CommandGroup "Building" ` -Message "Showing build report." ` -AdditionalArguments $AdditionalArguments } New-Alias ` -Name e-bbr ` -Value Show-EdenServiceBuildReport ` -Force |