FpsBcDeployment.psm1

$CmdLets = @(
    'Get-AppDependencyOrder.ps1'
    'Get-BcComponent.ps1'
    'Get-BcServerInstance.ps1'
    'Publish-BcAddin.ps1'
    'Publish-BcSystem.ps1'
    'Set-BcServerInstance.ps1'
    'Get-BcVersion.ps1'
    'Get-LicenseDetails.ps1'
    'Import-BcModule'
    'Install-BcApp.ps1'
    'New-BcRuntimePackage.ps1'
    'Wait-BcServerInstanceMountingTenants.ps1'
)

$CmdletPath = (Join-Path -Path $PSScriptRoot -ChildPath 'Functions')

foreach ($CmdLet in $CmdLets) {
    . (Join-Path -Path $CmdletPath -ChildPath $CmdLet)
}