SSV-Core.psm1

#$global:SSVCoreRoot = $PSScriptRoot
$Script:SSVCoreRoot = $PSScriptRoot
$Script:SSVCoreFunctionsRoot = "$PSScriptRoot\Functions"
"$SSVCoreRoot\Functions\*.ps1" |
    Resolve-Path |
    Where-Object { -not ($_.ProviderPath.ToLower().Contains(".tests.")) } |
    ForEach-Object { . $_.ProviderPath }