We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 49e0b0d + c340b37 commit 7e797b2Copy full SHA for 7e797b2
tools/CreateFilterMappings.ps1
@@ -152,7 +152,7 @@ function Add-ProjectDependencies
152
153
$ProjectDependencies = @()
154
$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 += $_ }
+ $Content | Select-String -Pattern "`"[a-zA-Z0-9.]*`"" | ForEach-Object { $_.Matches[0].Value.Trim('"') } | Where-Object { $CommonProjectsToIgnore -notcontains $_ } | ForEach-Object { $ProjectDependencies += $_ }
156
$Mappings[$SolutionPath] = $ProjectDependencies
157
return $Mappings
158
}
0 commit comments