Add mono package to ubuntu 22 (#5950)

This commit is contained in:
Mikhail Timofeev
2022-07-25 13:26:39 +04:00
committed by GitHub
parent d746320dd3
commit 11cfd9eac0
5 changed files with 17 additions and 3 deletions

View File

@@ -88,6 +88,11 @@ function Get-MsbuildVersion {
return "MSBuild $msbuildVersion (from $msbuildPath)"
}
function Get-NuGetVersion {
$nugetVersion = nuget help | Select-Object -First 1 | Take-OutputPart -Part 2
return "NuGet $nugetVersion"
}
function Get-NodeVersion {
$nodeVersion = $(node --version).Substring(1)
return "Node $nodeVersion"

View File

@@ -42,6 +42,8 @@ $runtimesList = @(
(Get-DashVersion),
(Get-CPPVersions),
(Get-FortranVersions),
(Get-MsbuildVersion),
(Get-MonoVersion),
(Get-NodeVersion),
(Get-PerlVersion),
(Get-PythonVersion),
@@ -56,8 +58,6 @@ $runtimesList = @(
if ((Test-IsUbuntu18) -or (Test-IsUbuntu20)) {
$runtimesList += @(
(Get-MsbuildVersion),
(Get-MonoVersion),
(Get-ErlangVersion),
(Get-ErlangRebar3Version),
(Get-SwiftVersion)
@@ -73,6 +73,7 @@ $packageManagementList = @(
(Get-CpanVersion),
(Get-GemVersion),
(Get-MinicondaVersion),
(Get-NuGetVersion),
(Get-HelmVersion),
(Get-NpmVersion),
(Get-YarnVersion),