internal/scripts/postimport.ps1
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
<#
Add all things you want to run after importing the main function code WARNING: ONLY provide paths to files! After building the module, this file will be completely ignored, adding anything but paths to files ... - Will not work after publishing - Could break the build process #> $moduleRoot = Split-Path (Split-Path $PSScriptRoot) # Init defaults "$moduleRoot\internal\scripts\InitDefaults.ps1" |