We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f3188b3 commit a34ecb3Copy full SHA for a34ecb3
1 file changed
tools/compliance/Check-UiCorePackageAlignment.ps1
@@ -85,6 +85,11 @@ function Assert-PackageVersion {
85
86
$fullPath = Resolve-RepoPath -RelativePath $ProjectRelativePath
87
if (-not $fullPath -or -not (Test-Path -LiteralPath $fullPath)) {
88
+ if ($ProjectRelativePath -like "lib/McpServer/Directory.Packages.props") {
89
+ Write-Host "Skipping package version check for $ProjectRelativePath because this repository checkout does not include the legacy submodule."
90
+ return
91
+ }
92
+
93
Add-Finding -Rule $Rule -File $ProjectRelativePath -Message "Required file not found."
94
return
95
}
0 commit comments