Public/Running/Start-EdenLocalServiceApplicationContinuous.ps1

function Start-EdenLocalServiceApplicationContinuous {
    <#
        .SYNOPSIS
        Starting the local service application continuously.

        .DESCRIPTION
        Starting the local service application continuously. by calling the local './Eden/Running/Start-LocalServiceApplicationContinuous.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 "Running/Start-LocalServiceApplicationContinuous" `
        -SettingsName $SettingsName `
        -CommandGroup "Running" `
        -Message "Starting the local service application continuously." `
        -AdditionalArguments $AdditionalArguments
}
New-Alias `
    -Name e-rsac `
    -Value Start-EdenLocalServiceApplicationContinuous `
    -Force