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.
1 parent 672d163 commit 9519363Copy full SHA for 9519363
csharp/extractor/Semmle.Extraction.CSharp.DependencyFetching/DependencyManager.cs
@@ -191,8 +191,9 @@ private IEnumerable<string> GetFiles(string pattern, bool recurseSubdirectories
191
RecurseSubdirectories = recurseSubdirectories,
192
MatchCasing = MatchCasing.CaseInsensitive
193
})
194
- .Where(d => d.Extension != ".dll" && !options.ExcludesFile(d.FullName))
195
- .Select(d => d.FullName);
+ .Where(d => d.Extension != ".dll")
+ .Select(d => d.FullName)
196
+ .Where(d => !options.ExcludesFile(d));
197
198
/// <summary>
199
/// Computes a unique temp directory for the packages associated
0 commit comments