lib/Classes/TransitionManager.Classes.ps1
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
# Load the classes in a specific order @( 'TMReference', # TMReference always needs to go first because it is referenced by other classes 'TMSetting', 'TMAssetOption', 'TMEvent', 'TMProfile', 'TMSession', 'TMTag', 'TMTask', 'TMTeam', 'TMActionParameters' ) | ForEach-Object { . "$(Join-Path $PSSCriptRoot 'Public' ($_ + '.ps1'))" } |