FC_TFS.psm1

$script:TFSbaseURL = ""
$script:TFSCollection = ""
$script:TFSTeamProject = ""
$script:apiVersion = '3.0'
$script:TFSlocalAutoGitRepo = ""

# Import everything in sub folders folder
foreach ( $folder in @( 'private', 'public', 'classes' ) ) 
{ 
    $root = Join-Path -Path $PSScriptRoot -ChildPath $folder 
    if ( Test-Path -Path $root ) 
    { 
        Write-Verbose "processing folder $root" 
        $files = Get-ChildItem -Path $root -Filter *.ps1 
 
 
         # dot source each file
         $files | where-Object { $_.name -NotLike '*.Tests.ps1' } | 
             ForEach-Object { Write-Verbose $_.name; . $_.FullName } 
                  } 
 }