PSCoreUpdate.psm1
# Load messages Import-LocalizedData -BindingVariable "Messages" -FileName "Messages" # Import functions . (Join-Path $PSScriptRoot 'Utils.ps1') . (Join-Path $PSScriptRoot 'PowerShellGitHubApiToken.ps1') . (Join-Path $PSScriptRoot 'Find-PowerShellBuildStatus.ps1') . (Join-Path $PSScriptRoot 'Find-PowerShellSupportStatus.ps1') . (Join-Path $PSScriptRoot 'Find-PowerShellRelease.ps1') . (Join-Path $PSScriptRoot 'Save-PowerShellAsset.ps1') . (Join-Path $PSScriptRoot 'Test-LatestVersion.ps1') . (Join-Path $PSScriptRoot 'Update-PowerShellRelease.ps1') # Set alias Set-Alias -Name 'Download-PowerShellAsset' -Value 'Save-PowerShellAsset' # alias for compatibility <# .SYNOPSIS Enable legacy function alias * Download-PowerShellCore * Find-PowerShellCore * Save-PowerShellCore * Set-PowerShellCoreApiToken, Remove-PowerShellCoreApiToken, Get-PowerShellCoreApiToken * Update-PowerShellCore #> function Enable-PSCoreUpdateLegacyAlias { param ( [string]$Scope ) if (-not $Scope) { $Scope = 'Global' } Set-Alias -Name 'Download-PowerShellCore' -Value 'Save-PowerShellAsset' -Scope $Scope Set-Alias -Name 'Find-PowerShellCore' -Value 'Find-PowerShellRelease' -Scope $Scope Set-Alias -Name 'Save-PowerShellCore' -Value 'Save-PowerShellAsset' -Scope $Scope Set-Alias -Name 'Set-PowerShellCoreApiToken' -Value 'Set-PowerShellGitHubApiToken' -Scope $Scope Set-Alias -Name 'Remove-PowerShellCoreApiToken' -Value 'Remove-PowerShellGitHubApiToken' -Scope $Scope Set-Alias -Name 'Get-PowerShellCoreApiToken' -Value 'Get-PowerShellGitHubApiToken' -Scope $Scope Set-Alias -Name 'Update-PowerShellCore' -Value 'Update-PowerShellRelease' -Scope $Scope } |