7 lines
283 B
PowerShell
7 lines
283 B
PowerShell
Get-ChildItem "$(Split-Path $script:MyInvocation.MyCommand.Path)\functions" -Filter "*.ps1" -Recurse | ForEach-Object {
|
|
. $_.FullName
|
|
}
|
|
Get-ChildItem "$(Split-Path $script:MyInvocation.MyCommand.Path)\classes" -Filter "*.ps1" -Recurse | ForEach-Object {
|
|
. $_.FullName
|
|
}
|