mirror of
https://github.com/PowerShell/PowerShell.git
synced 2024-11-27 03:46:23 +08:00
Updates RIDs used to generate component Inventory (#20370)
This commit is contained in:
parent
963bf1e0ad
commit
13dd6acb4d
@ -35,7 +35,7 @@
|
||||
"Type": "nuget",
|
||||
"Nuget": {
|
||||
"Name": "Json.More.Net",
|
||||
"Version": "1.8.0"
|
||||
"Version": "1.9.0"
|
||||
}
|
||||
},
|
||||
"DevelopmentDependency": false
|
||||
@ -45,7 +45,7 @@
|
||||
"Type": "nuget",
|
||||
"Nuget": {
|
||||
"Name": "JsonPointer.Net",
|
||||
"Version": "3.0.1"
|
||||
"Version": "3.0.3"
|
||||
}
|
||||
},
|
||||
"DevelopmentDependency": false
|
||||
@ -55,7 +55,7 @@
|
||||
"Type": "nuget",
|
||||
"Nuget": {
|
||||
"Name": "JsonSchema.Net",
|
||||
"Version": "4.1.8"
|
||||
"Version": "5.2.5"
|
||||
}
|
||||
},
|
||||
"DevelopmentDependency": false
|
||||
@ -65,7 +65,7 @@
|
||||
"Type": "nuget",
|
||||
"Nuget": {
|
||||
"Name": "Markdig.Signed",
|
||||
"Version": "0.32.0"
|
||||
"Version": "0.33.0"
|
||||
}
|
||||
},
|
||||
"DevelopmentDependency": false
|
||||
@ -105,7 +105,7 @@
|
||||
"Type": "nuget",
|
||||
"Nuget": {
|
||||
"Name": "Microsoft.CodeAnalysis.Common",
|
||||
"Version": "4.6.0"
|
||||
"Version": "4.7.0"
|
||||
}
|
||||
},
|
||||
"DevelopmentDependency": false
|
||||
@ -115,7 +115,7 @@
|
||||
"Type": "nuget",
|
||||
"Nuget": {
|
||||
"Name": "Microsoft.CodeAnalysis.CSharp",
|
||||
"Version": "4.6.0"
|
||||
"Version": "4.7.0"
|
||||
}
|
||||
},
|
||||
"DevelopmentDependency": false
|
||||
@ -225,7 +225,7 @@
|
||||
"Type": "nuget",
|
||||
"Nuget": {
|
||||
"Name": "Microsoft.Windows.Compatibility",
|
||||
"Version": "7.0.4"
|
||||
"Version": "7.0.5"
|
||||
}
|
||||
},
|
||||
"DevelopmentDependency": false
|
||||
@ -475,7 +475,7 @@
|
||||
"Type": "nuget",
|
||||
"Nuget": {
|
||||
"Name": "System.DirectoryServices.AccountManagement",
|
||||
"Version": "7.0.0"
|
||||
"Version": "7.0.1"
|
||||
}
|
||||
},
|
||||
"DevelopmentDependency": false
|
||||
|
@ -165,10 +165,9 @@ function Get-CGRegistrations {
|
||||
"linux-x64",
|
||||
"osx-arm64",
|
||||
"osx-x64",
|
||||
"win-arm",
|
||||
"win-arm64",
|
||||
"win7-x64",
|
||||
"win7-x86",
|
||||
"win-x64",
|
||||
"win-x86",
|
||||
"modules")]
|
||||
[string]$Runtime,
|
||||
|
||||
@ -197,7 +196,7 @@ function Get-CGRegistrations {
|
||||
$folder = $unixProjectName
|
||||
$target = "$dotnetTargetName|$Runtime"
|
||||
}
|
||||
"win7-.*" {
|
||||
"win-x*" {
|
||||
$sdkToUse = $winDesktopSdk
|
||||
$folder = $windowsProjectName
|
||||
$target = "$dotnetTargetNameWin7|$Runtime"
|
||||
@ -265,7 +264,7 @@ function Get-CGRegistrations {
|
||||
$registrations = [System.Collections.Generic.Dictionary[string, Registration]]::new()
|
||||
$lastCount = 0
|
||||
$registrationChanged = $false
|
||||
foreach ($runtime in "win7-x64", "linux-x64", "osx-x64", "linux-musl-x64", "win-arm", "linux-arm", "linux-arm64", "osx-arm64", "win-arm64", "win7-x86") {
|
||||
foreach ($runtime in "win-x64", "linux-x64", "osx-x64", "linux-musl-x64", "linux-arm", "linux-arm64", "osx-arm64", "win-arm64", "win-x86") {
|
||||
$registrationChanged = (Get-CGRegistrations -Runtime $runtime -RegistrationTable $registrations) -or $registrationChanged
|
||||
$count = $registrations.Count
|
||||
$newCount = $count - $lastCount
|
||||
|
Loading…
Reference in New Issue
Block a user