[Windows] Add Windows10SDK.17763 to Win22 (#4980)

This commit is contained in:
Nikolay Frolov
2022-02-07 20:53:07 +03:00
committed by GitHub
parent f747f0983b
commit f160c496ff
4 changed files with 28 additions and 0 deletions

View File

@@ -88,4 +88,12 @@ function Get-VisualStudioExtensions {
$extensions | Foreach-Object {
[PSCustomObject]$_
} | Select-Object Package, Version | Sort-Object Package
}
function Get-WindowsSDKs {
$path = "${env:ProgramFiles(x86)}\Windows Kits\10\Extension SDKs\WindowsDesktop"
return [PSCustomObject]@{
Path = $path
Versions = $(Get-ChildItem $path).Name
}
}