FpsBcDeployment.psm1

# UserManagement
$CmdLets += @(
    'Set-InitialUserStatusUsingLogFile'
    'New-BcUserStateJsonFile.ps1'
    'Set-AllUsersDisabled.ps1'
) | ForEach-Object {Join-Path -Path 'Functions\UserManagement' -ChildPath $_}

$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)
}