src/_Get-CciGetDefaultConfig.ps1
|
function _Get-CciGetDefaultConfig { [CmdletBinding()] param() # The factory default profile points at the resource tenant feed in CCI-DEV. # Other tenants are added by the user via Set-CciGetConfig (or by editing # %USERPROFILE%\.cciget\config.json directly). [pscustomobject]@{ defaultFeed = 'ccidev' feeds = @( [pscustomobject]@{ name = 'ccidev' url = 'https://pkgs.dev.azure.com/cciplatform/_packaging/feed-modules-ccidev/nuget/v2' tenantId = 'cc031f5b-17b0-4714-a0e7-b1bd593b3933' description = 'CCI-DEV resource-tenant module feed (canonical Cci.* origin).' enabled = $true } ) } } |