Files
runner-images-sangeeth/images/windows/scripts/helpers/ImageHelpers.psm1
T

58 lines
1.3 KiB
PowerShell
Raw Normal View History

2019-11-15 15:23:41 -05:00
[CmdletBinding()]
param()
. $PSScriptRoot\AndroidHelpers.ps1
2023-12-04 10:50:53 +01:00
Export-ModuleMember -Function @(
'Get-AndroidPackages'
'Get-AndroidPlatformPackages'
'Get-AndroidBuildToolPackages'
'Get-AndroidInstalledPackages'
)
2020-04-14 06:51:57 +01:00
. $PSScriptRoot\ChocoHelpers.ps1
2023-12-04 10:50:53 +01:00
Export-ModuleMember -Function @(
'Install-ChocoPackage'
'Resolve-ChocoPackageVersion'
)
2019-11-15 15:23:41 -05:00
2023-12-04 10:50:53 +01:00
. $PSScriptRoot\InstallHelpers.ps1
2019-11-15 15:23:41 -05:00
Export-ModuleMember -Function @(
'Install-Binary'
2023-12-04 10:50:53 +01:00
'Invoke-DownloadWithRetry'
'Get-ToolsetContent'
'Get-TCToolPath'
2023-12-04 10:50:53 +01:00
'Get-TCToolVersionPath'
2024-11-29 11:08:29 +01:00
'Test-IsWin25'
'Test-IsWin22'
'Test-IsWin19'
'Expand-7ZipArchive'
'Get-WindowsUpdateStates'
2023-12-04 10:50:53 +01:00
'Invoke-ScriptBlockWithRetry'
'Get-GithubReleasesByVersion'
'Resolve-GithubReleaseAssetUrl'
'Get-ChecksumFromGithubRelease'
'Get-ChecksumFromUrl'
'Test-FileChecksum'
2023-10-11 11:02:59 +02:00
'Test-FileSignature'
2023-11-29 13:00:16 +01:00
'Update-Environment'
2019-11-15 15:23:41 -05:00
)
2023-12-04 10:50:53 +01:00
. $PSScriptRoot\PathHelpers.ps1
Export-ModuleMember -Function @(
'Mount-RegistryHive'
'Dismount-RegistryHive'
'Add-MachinePathItem'
'Add-DefaultPathItem'
)
. $PSScriptRoot\VisualStudioHelpers.ps1
Export-ModuleMember -Function @(
'Install-VisualStudio'
'Get-VisualStudioInstance'
'Get-VisualStudioComponents'
'Get-VsixInfoFromMarketplace'
'Install-VSIXFromFile'
'Install-VSIXFromUrl'
'Get-VSExtensionVersion'
)