Ndimensions.Automation.NafSetup.psm1
<#
.SYNOPSIS Ndimensions Automation Module .DESCRIPTION Ndimensions Automation Module Initialize Git Environment. Prepare for downloading the NAF repo. Includes all git related software for cloning. .NOTES Author : hillesheim@n-dimensions.de Version : 2.6 DateLastChanged : 2023-09-22 #> # Import-Module .\git_helper.psm1; Write-Host "Load module 'Ndimensions.Automation' ... "; #region begin DECLARATION #region begin TYPES enum JobSteps_GetNafRepo { NONE SetGitConfig GhSetDeviceAuth GhCloneRepository Abort } $defaultJobSteps_GetNafRepo = @(1); enum JobSteps_InitGitEnv { NONE OpenScriptEditor InstallChoco InstallGit InstallGithubDesktop InstallGithubClient InstallPowerShell7 Restart Abort } $defaultJobSteps_InitGitEnv = @(1); #endregion #endregion |