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