Functions/Private/Helpers.ps1
# Enforcing the bundled version of PowershellGet. # See: https://github.com/OneGet/oneget/issues/460 Import-Module PackageManagement -Version 1.0.0.1 Import-Module PowershellGet -Version 1.0.0.1 <# .SYNOPSIS Build a nuget Feed url from the account/feed info #> function Get-ADOFeedURL { [CmdletBinding()] [OutputType('System.String')] Param( [Parameter(Mandatory=$true, Position=0)] [string] $Feed ) $Components = $Feed.Split('/') $Account = $Components[0] $FeedName = $Components[1] "https://pkgs.dev.azure.com/$Account/_packaging/$FeedName/nuget/v2/" } <# .SYNOPSIS Get credentials for an ADO feed #> function Get-ADOFeedCredential { [CmdletBinding()] [Diagnostics.CodeAnalysis.SuppressMessageAttribute("PSAvoidUsingConvertToSecureStringWithPlainText", "")] Param( [Parameter(Mandatory=$true)] [string] $FeedUrl, [Parameter()] [string] $AccessToken ) if ($AccessToken) { Write-Verbose "Using provided Access Token" $Username = $AccessToken $Password = ConvertTo-SecureString $AccessToken -AsPlainText -Force } else { $Verbosity = "" if ($VerbosePreference -match "Silent") { $Verbosity = "Silent" } else { $Verbosity = "Detailed" } $RawCredentials = & "$PSScriptRoot\..\..\Assets\CredentialProvider.VSS.exe" -V $Verbosity -U $FeedUrl | ConvertFrom-Json if ($LASTEXITCODE -ne 0) { throw "Failed to fetch credentials for feed" } $Username = $RawCredentials.Username $Password = ConvertTo-SecureString $RawCredentials.Password -AsPlainText -Force } $Credential = New-Object System.Management.Automation.PSCredential($Username, $Password) $Credential } |