15 строки
418 B
PowerShell
15 строки
418 B
PowerShell
param(
|
|
[switch] $Silent,
|
|
[string[]] $bcContainerHelperConfigFile = @()
|
|
)
|
|
|
|
. (Join-Path $PSScriptRoot "InitializeModule.ps1") `
|
|
-Silent:$Silent `
|
|
-bcContainerHelperConfigFile $bcContainerHelperConfigFile `
|
|
-moduleName $MyInvocation.MyCommand.Name `
|
|
-moduleDependencies @( 'BC.HelperFunctions' )
|
|
|
|
. (Join-Path $PSScriptRoot "HelperFunctions.ps1")
|
|
. (Join-Path $PSScriptRoot "BC.ALGoHelper.ps1")
|
|
|