.dev/test-module.Notebook.ps1
Write-Output "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-Output "Functions: $functions" foreach ($file in $functions) { Write-Output "Importing $file" } foreach ($file in $functions) { Write-Output "Exporting $($file.BaseName)" } @($functions) | ForEach-Object { Write-Verbose "Importing $($_)" } |