[Windows] Move Android and VS helpers to dedicated files (#8903)

This commit is contained in:
Vasilii Polikarpov
2023-11-30 16:53:16 +01:00
committed by GitHub
parent 45a5b970b8
commit eb0e4ff100
8 changed files with 332 additions and 329 deletions

View File

@@ -1,9 +1,10 @@
[CmdletBinding()]
param()
. $PSScriptRoot\PathHelpers.ps1
. $PSScriptRoot\InstallHelpers.ps1
. $PSScriptRoot\AndroidHelpers.ps1
. $PSScriptRoot\ChocoHelpers.ps1
. $PSScriptRoot\InstallHelpers.ps1
. $PSScriptRoot\PathHelpers.ps1
. $PSScriptRoot\VisualStudioHelpers.ps1
Export-ModuleMember -Function @(
@@ -17,7 +18,7 @@ Export-ModuleMember -Function @(
'Get-TCToolVersionPath'
'Get-TCToolPath'
'Invoke-DownloadWithRetry'
'Get-VsixExtenstionFromMarketplace'
'Get-VsixInfoFromMarketplace'
'Install-VSIXFromFile'
'Install-VSIXFromUrl'
'Get-VSExtensionVersion'
@@ -25,7 +26,6 @@ Export-ModuleMember -Function @(
'Test-IsWin22'
'Test-IsWin19'
'Install-ChocoPackage'
'Send-RequestToCocolateyPackages'
'Resolve-ChocoPackageVersion'
'Resolve-GithubReleaseAssetUrl'
'Expand-7ZipArchive'