mirror of
https://github.com/vale981/ray
synced 2025-03-10 05:16:49 -04:00
39 lines
965 B
PowerShell
39 lines
965 B
PowerShell
[CmdletBinding()]
|
|
param()
|
|
|
|
. $PSScriptRoot\PathHelpers.ps1
|
|
. $PSScriptRoot\InstallHelpers.ps1
|
|
. $PSScriptRoot\ChocoHelpers.ps1
|
|
. $PSScriptRoot\TestsHelpers.ps1
|
|
. $PSScriptRoot\VisualStudioHelpers.ps1
|
|
|
|
Export-ModuleMember -Function @(
|
|
'Test-MachinePath'
|
|
'Get-MachinePath'
|
|
'Set-MachinePath'
|
|
'Add-MachinePathItem'
|
|
'Get-SystemVariable'
|
|
'Set-SystemVariable'
|
|
'Install-Binary'
|
|
'Install-VisualStudio'
|
|
'Get-ToolsetContent'
|
|
'Get-ToolsetToolFullPath'
|
|
'Stop-SvcWithErrHandling'
|
|
'Set-SvcWithErrHandling'
|
|
'Start-DownloadWithRetry'
|
|
'Get-VsixExtenstionFromMarketplace'
|
|
'Install-VsixExtension'
|
|
'Get-VSExtensionVersion'
|
|
'Get-WinVersion'
|
|
'Test-IsWin19'
|
|
'Test-IsWin16'
|
|
'Choco-Install'
|
|
'Get-CommandResult'
|
|
'Get-WhichTool'
|
|
'Get-EnvironmentVariable'
|
|
'Invoke-PesterTests'
|
|
'Get-VsCatalogJsonPath'
|
|
'Get-VisualStudioPath'
|
|
'Get-VisualStudioPackages'
|
|
'Get-VisualStudioComponents'
|
|
)
|