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 207c403 commit 2c4136fCopy full SHA for 2c4136f
src/DarkId.Papyrus.LanguageService/Projects/ProgramExtensions.cs
@@ -16,7 +16,7 @@ public static ProgramOptionsBuilder WithProject(this ProgramOptionsBuilder build
16
17
builder.WithName(Path.GetFileNameWithoutExtension(projectInfo.ProjectFile))
18
.WithFlagsFileName(projectInfo.Project.Flags)
19
- .WithSourceIncludes(projectInfo.Project.Imports.Select(import => new SourceInclude()
+ .WithSourceIncludes(projectInfo.Project.Imports.Reverse().Select(import => new SourceInclude()
20
{
21
Path = Path.GetFullPath(Path.Combine(projectFileDirectory, PathUtilities.Normalize(import)))
22
}));
0 commit comments