2019-11-15 15:23:41 -05:00
|
|
|
[CmdletBinding()]
|
|
|
|
|
param()
|
|
|
|
|
|
|
|
|
|
. $PSScriptRoot\PathHelpers.ps1
|
|
|
|
|
. $PSScriptRoot\InstallHelpers.ps1
|
2020-04-14 06:51:57 +01:00
|
|
|
. $PSScriptRoot\ChocoHelpers.ps1
|
2020-07-09 10:53:29 +03:00
|
|
|
. $PSScriptRoot\TestsHelpers.ps1
|
2020-07-24 18:43:19 +03:00
|
|
|
. $PSScriptRoot\VisualStudioHelpers.ps1
|
2019-11-15 15:23:41 -05:00
|
|
|
|
|
|
|
|
Export-ModuleMember -Function @(
|
2021-11-26 10:41:26 +03:00
|
|
|
'Connect-Hive'
|
|
|
|
|
'Disconnect-Hive'
|
2019-11-15 15:23:41 -05:00
|
|
|
'Test-MachinePath'
|
|
|
|
|
'Get-MachinePath'
|
2021-11-26 10:41:26 +03:00
|
|
|
'Get-DefaultPath'
|
2019-11-15 15:23:41 -05:00
|
|
|
'Set-MachinePath'
|
2021-11-26 10:41:26 +03:00
|
|
|
'Set-DefaultPath'
|
2019-11-15 15:23:41 -05:00
|
|
|
'Add-MachinePathItem'
|
2021-11-26 10:41:26 +03:00
|
|
|
'Add-DefaultPathItem'
|
2019-11-15 15:23:41 -05:00
|
|
|
'Get-SystemVariable'
|
2021-11-26 10:41:26 +03:00
|
|
|
'Get-DefaultVariable'
|
2019-11-15 15:23:41 -05:00
|
|
|
'Set-SystemVariable'
|
2021-11-26 10:41:26 +03:00
|
|
|
'Set-DefaultVariable'
|
2020-04-21 11:58:27 +03:00
|
|
|
'Install-Binary'
|
2020-05-05 20:50:00 +03:00
|
|
|
'Install-VisualStudio'
|
2020-04-30 18:11:40 +03:00
|
|
|
'Get-ToolsetContent'
|
2020-06-30 07:48:55 +03:00
|
|
|
'Get-ToolsetToolFullPath'
|
2019-12-23 17:41:24 +04:00
|
|
|
'Stop-SvcWithErrHandling'
|
|
|
|
|
'Set-SvcWithErrHandling'
|
2020-03-20 11:33:59 +07:00
|
|
|
'Start-DownloadWithRetry'
|
2021-04-23 19:38:43 +03:00
|
|
|
'Get-VsixExtenstionFromMarketplace'
|
2020-03-17 09:47:22 +03:00
|
|
|
'Install-VsixExtension'
|
|
|
|
|
'Get-VSExtensionVersion'
|
|
|
|
|
'Get-WinVersion'
|
2021-08-23 11:13:14 +03:00
|
|
|
'Test-IsWin22'
|
2020-03-17 09:47:22 +03:00
|
|
|
'Test-IsWin19'
|
|
|
|
|
'Test-IsWin16'
|
2020-04-17 10:53:30 +03:00
|
|
|
'Choco-Install'
|
2021-11-10 21:43:42 +03:00
|
|
|
'Send-RequestToCocolateyPackages'
|
|
|
|
|
'Get-LatestChocoPackageVersion'
|
2021-12-08 10:39:42 +03:00
|
|
|
'Get-GitHubPackageDownloadUrl'
|
2020-05-13 08:02:08 +03:00
|
|
|
'Extract-7Zip'
|
2020-07-09 10:53:29 +03:00
|
|
|
'Get-CommandResult'
|
2020-07-16 07:30:34 +03:00
|
|
|
'Get-WhichTool'
|
2020-07-09 10:53:29 +03:00
|
|
|
'Get-EnvironmentVariable'
|
|
|
|
|
'Invoke-PesterTests'
|
2021-11-26 17:49:05 +03:00
|
|
|
'Invoke-SBWithRetry'
|
2020-07-22 14:04:40 +03:00
|
|
|
'Get-VsCatalogJsonPath'
|
2020-07-17 09:35:46 +00:00
|
|
|
'Install-AndroidSDKPackages'
|
2020-09-30 23:42:32 +03:00
|
|
|
'Get-AndroidPackages'
|
|
|
|
|
'Get-AndroidPackagesByName'
|
|
|
|
|
'Get-AndroidPackagesByVersion'
|
2021-08-04 22:35:44 +03:00
|
|
|
'Get-VisualStudioInstance'
|
2020-07-22 14:04:40 +03:00
|
|
|
'Get-VisualStudioComponents'
|
2021-11-16 17:14:17 +03:00
|
|
|
'Get-WindowsUpdatesHistory'
|
2022-02-08 17:09:32 +03:00
|
|
|
'New-ItemPath'
|
2019-11-15 15:23:41 -05:00
|
|
|
)
|