59 lines
1.5 KiB
PowerShell
59 lines
1.5 KiB
PowerShell
$global:pptConfig = @{
|
|
|
|
#############################################
|
|
#
|
|
# Relative path access to pac-cli binary
|
|
# Modifications to relative path are considered advanced features
|
|
#
|
|
|
|
pacPath = (Join-Path -Path $PSScriptRoot -ChildPath 'bin\pac\tools\pac.exe')
|
|
#pacPath = "C:\ProgramData\.vscode\settings\User\globalStorage\microsoft-isvexptools.powerplatform-vscode\pac\tools\pac.exe"
|
|
|
|
#############################################
|
|
#
|
|
# Config variable property containing a list of all GitLab parent
|
|
# groups required for development team(s)
|
|
#
|
|
# Example Hierarchy:
|
|
# MAI (parent group)
|
|
# |
|
|
# |_ Steampunk (child group)
|
|
# | |_ CCAS (repo)
|
|
# | |_ Fraud (repo)
|
|
# | |_ GCMM (repo)
|
|
# |
|
|
# |_ development (child group)
|
|
# | |_ dcma-mai-cams (repo)
|
|
# | |_ dcma-mai-cmt (repo)
|
|
# |
|
|
# |_ common (child group)
|
|
#
|
|
# SDG (parent group)
|
|
# |
|
|
# |_ PowerApp (child group)
|
|
# | |_ BuildScripts (repo)
|
|
# | |_ OnBoardingOffboarding (repo)
|
|
# | |_ RemoteworkAgreement (repo)
|
|
# | |_ SDG-Connection-Segment (repo)
|
|
# |
|
|
# |_ Support (child group)
|
|
# |_ pac-cli (repo)
|
|
# |_ VSCode Extensions (repo)
|
|
#
|
|
|
|
gitParentGroup = @(
|
|
'PowerPlatform'
|
|
)
|
|
|
|
#############################################
|
|
#
|
|
# Config variable property containing a list of all GitLab child
|
|
# groups required for development team(s)
|
|
#
|
|
|
|
gitChildGroup = @(
|
|
'PowerShell'
|
|
'Support'
|
|
'PowerApp'
|
|
)
|
|
} |