public/Clear-GzVisualStudioVersionCache.ps1

function Clear-GzVisualStudioPathCache() {
    Param()
    
    $vsPaths = Get-ModuleVariable "VsPaths"
    if($null -ne $vsPaths.Value) {
        Set-Variable -Name "vsPaths" -Value $Null
    }
}