Skip to content

Commit

Permalink
Only match exactly packages.config in XmlParser
Browse files Browse the repository at this point in the history
  • Loading branch information
timtebeek committed Aug 19, 2024
1 parent 45bcc89 commit f6b4486
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ public boolean accept(Path path) {
p.endsWith(".pst") ||
// C# project files
p.endsWith(".csproj") ||
p.equals("packages.config");
path.endsWith("packages.config");
}

@Override
Expand Down

0 comments on commit f6b4486

Please sign in to comment.