.dev/test-module.Notebook.ps1

Write-Host "PSScriptRoot: $PSScriptRoot/"

Publish-Module -Path "D:\T3\Projects\Vertafore\Modules\RallyQuickToolsCli\" -Verbose -NuGetApiKey "oy2oahr6bt53klaei4sabjkggv4cah4eha4kjvi55rlmu4"

$scriptRoot = "D:\T3\Projects\Vertafore\Modules\RallyQuickToolsCli\src\tools"
$functions  = @( Get-ChildItem -Recurse -Filter "*.ps1" -Path "$scriptRoot" )
Write-Host "Functions: $functions"
foreach ($file in $functions) {
    Write-Host "Importing $file"
}

foreach ($file in $functions) {
    Write-Host "Exporting $($file.BaseName)"
}

@($functions) | ForEach-Object {
    Write-Verbose "Importing $($_)"
    
}