We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fce40ef commit 75ef89bCopy full SHA for 75ef89b
eng/scripts/Language-Settings.ps1
@@ -151,6 +151,13 @@ function Get-AllPackageInfoFromRepo($serviceDirectory)
151
$pkgProp.CIParameters["BuildSnippets"] = $true
152
}
153
154
+ # if the package isn't associated with a CI.yml, we still want to set the defaults values for these parameters
155
+ # so that when we are checking the package set for which need to "Build Snippets" or "Check AOT" we won't crash due to the property being null
156
+ else {
157
+ $pkgProp.CIParameters["CheckAOTCompat"] = $false
158
+ $pkgProp.CIParameters["AOTTestInputs"] = @()
159
+ $pkgProp.CIParameters["BuildSnippets"] = $true
160
+ }
161
162
$allPackageProps += $pkgProp
163
0 commit comments