Skip to content

Commit 7e797b2

Browse files
authored
Merge pull request Azure#10338 from VeryEarly/StaticAnalysisError-not-in-ADO#10221
Static analysis error not in ado#10221
2 parents 49e0b0d + c340b37 commit 7e797b2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/CreateFilterMappings.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ function Add-ProjectDependencies
152152

153153
$ProjectDependencies = @()
154154
$Content = Get-Content -Path $SolutionPath
155-
$Content | Select-String -Pattern "`"[a-zA-Z.]*`"" | ForEach-Object { $_.Matches[0].Value.Trim('"') } | Where-Object { $CommonProjectsToIgnore -notcontains $_ } | ForEach-Object { $ProjectDependencies += $_ }
155+
$Content | Select-String -Pattern "`"[a-zA-Z0-9.]*`"" | ForEach-Object { $_.Matches[0].Value.Trim('"') } | Where-Object { $CommonProjectsToIgnore -notcontains $_ } | ForEach-Object { $ProjectDependencies += $_ }
156156
$Mappings[$SolutionPath] = $ProjectDependencies
157157
return $Mappings
158158
}

0 commit comments

Comments
 (0)