mirror of
https://github.com/github/codeql.git
synced 2026-04-28 18:25:24 +02:00
Introduce environment variable to specify framework assembly locations
This commit is contained in:
@@ -386,7 +386,7 @@ namespace Semmle.Extraction.CSharp
|
||||
|
||||
if (compilerArguments.GeneratedFilesOutputDirectory is not null)
|
||||
{
|
||||
paths.AddRange(Directory.GetFiles(compilerArguments.GeneratedFilesOutputDirectory, "*.cs", SearchOption.AllDirectories));
|
||||
paths.AddRange(Directory.GetFiles(compilerArguments.GeneratedFilesOutputDirectory, "*.cs", new EnumerationOptions { RecurseSubdirectories = true, MatchCasing = MatchCasing.CaseInsensitive }));
|
||||
}
|
||||
|
||||
return ReadSyntaxTrees(
|
||||
|
||||
Reference in New Issue
Block a user