28 lines
736 B
PowerShell
28 lines
736 B
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"
|
|
|
|
gitParentGroup = @(
|
|
'PowerPlatform'
|
|
)
|
|
|
|
#############################################
|
|
#
|
|
# Config variable property containing a list of all GitLab child
|
|
# groups required for development team(s)
|
|
#
|
|
|
|
gitChildGroup = @(
|
|
'PowerShell'
|
|
'Support'
|
|
'PowerApp'
|
|
)
|
|
}
|