2019-11-15 15:23:41 -05:00
|
|
|
[CmdletBinding()]
|
|
|
|
|
param()
|
|
|
|
|
|
2023-11-30 16:53:16 +01:00
|
|
|
. $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 @(
|
2020-04-21 11:58:27 +03:00
|
|
|
'Install-Binary'
|
2023-12-04 10:50:53 +01:00
|
|
|
'Invoke-DownloadWithRetry'
|
2020-04-30 18:11:40 +03:00
|
|
|
'Get-ToolsetContent'
|
2023-11-23 11:59:08 +01:00
|
|
|
'Get-TCToolPath'
|
2023-12-04 10:50:53 +01:00
|
|
|
'Get-TCToolVersionPath'
|
2024-11-29 11:08:29 +01:00
|
|
|
'Test-IsWin25'
|
2021-08-23 11:13:14 +03:00
|
|
|
'Test-IsWin22'
|
2020-03-17 09:47:22 +03:00
|
|
|
'Test-IsWin19'
|
2023-11-23 11:59:49 +01:00
|
|
|
'Expand-7ZipArchive'
|
2023-11-27 12:29:42 +01:00
|
|
|
'Get-WindowsUpdateStates'
|
2023-12-04 10:50:53 +01:00
|
|
|
'Invoke-ScriptBlockWithRetry'
|
|
|
|
|
'Get-GithubReleasesByVersion'
|
|
|
|
|
'Resolve-GithubReleaseAssetUrl'
|
|
|
|
|
'Get-ChecksumFromGithubRelease'
|
|
|
|
|
'Get-ChecksumFromUrl'
|
2023-11-30 09:22:14 +01:00
|
|
|
'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'
|
|
|
|
|
)
|