mirror of
https://github.com/actions/runner-images.git
synced 2025-12-15 06:08:07 +00:00
* reworked xamarin documentation * added condition for defaultSymlink variable * removed sorting of xamarin bundles Co-authored-by: Nikita Bykov <v-nibyko@microsoft.com>
32 lines
1.0 KiB
PowerShell
32 lines
1.0 KiB
PowerShell
Import-Module "$PSScriptRoot/../helpers/Common.Helpers.psm1"
|
|
|
|
function Get-VSMacVersion {
|
|
$plistPath = "/Applications/Visual Studio.app/Contents/Info.plist"
|
|
return Run-Command "/usr/libexec/PlistBuddy -c 'Print CFBundleVersion' '$plistPath'"
|
|
}
|
|
|
|
function Get-NUnitVersion {
|
|
$version = Run-Command "nunit3-console --version" | Select-Object -First 1 | Take-Part -Part 3
|
|
return "NUnit ${version}"
|
|
}
|
|
|
|
function Build-XamarinTable {
|
|
$xamarinBundles = Get-ToolsetValue "xamarin.bundles"
|
|
$defaultSymlink = Get-ToolsetValue "xamarin.bundle-default"
|
|
if ($defaultSymlink -eq "latest") {
|
|
$defaultSymlink = $xamarinBundles[0].symlink
|
|
}
|
|
|
|
return $xamarinBundles | ForEach-Object {
|
|
$defaultPostfix = ($_.symlink -eq $defaultSymlink ) ? " (default)" : ""
|
|
[PSCustomObject] @{
|
|
"symlink" = $_.symlink + $defaultPostfix
|
|
"Xamarin.Mono" = $_.mono
|
|
"Xamarin.iOS" = $_.ios
|
|
"Xamarin.Mac" = $_.mac
|
|
"Xamarin.Android" = $_.android
|
|
}
|
|
}
|
|
}
|
|
|