mirror of
https://github.com/actions/runner-images.git
synced 2025-12-15 22:26:56 +00:00
55 lines
1.3 KiB
PowerShell
55 lines
1.3 KiB
PowerShell
[CmdletBinding()]
|
|
param()
|
|
|
|
. $PSScriptRoot\PathHelpers.ps1
|
|
. $PSScriptRoot\InstallHelpers.ps1
|
|
. $PSScriptRoot\ChocoHelpers.ps1
|
|
. $PSScriptRoot\VisualStudioHelpers.ps1
|
|
|
|
Export-ModuleMember -Function @(
|
|
'Connect-Hive'
|
|
'Disconnect-Hive'
|
|
'Test-MachinePath'
|
|
'Get-MachinePath'
|
|
'Get-DefaultPath'
|
|
'Set-MachinePath'
|
|
'Set-DefaultPath'
|
|
'Add-MachinePathItem'
|
|
'Add-DefaultPathItem'
|
|
'Add-DefaultItem'
|
|
'Get-SystemVariable'
|
|
'Get-DefaultVariable'
|
|
'Set-DefaultVariable'
|
|
'Install-Binary'
|
|
'Install-VisualStudio'
|
|
'Get-ToolsetContent'
|
|
'Get-TCToolVersionPath'
|
|
'Get-TCToolPath'
|
|
'Start-DownloadWithRetry'
|
|
'Get-VsixExtenstionFromMarketplace'
|
|
'Install-VSIXFromFile'
|
|
'Install-VSIXFromUrl'
|
|
'Get-VSExtensionVersion'
|
|
'Get-WinVersion'
|
|
'Test-IsWin22'
|
|
'Test-IsWin19'
|
|
'Install-ChocoPackage'
|
|
'Send-RequestToCocolateyPackages'
|
|
'Resolve-ChocoPackageVersion'
|
|
'Get-GitHubPackageDownloadUrl'
|
|
'Expand-7ZipArchive'
|
|
'Invoke-SBWithRetry'
|
|
'Get-VsCatalogJsonPath'
|
|
'Install-AndroidSDKPackages'
|
|
'Get-AndroidPackages'
|
|
'Get-AndroidPackagesByName'
|
|
'Get-AndroidPackagesByVersion'
|
|
'Get-VisualStudioInstance'
|
|
'Get-VisualStudioComponents'
|
|
'Get-WindowsUpdatesHistory'
|
|
'New-ItemPath'
|
|
'Use-ChecksumComparison'
|
|
'Get-HashFromGitHubReleaseBody'
|
|
'Test-FileSignature'
|
|
)
|