From e48bd78aac3e3de8c9c489bd37bb0f49721e468a Mon Sep 17 00:00:00 2001 From: Matt Parker <61717342+MattParkerDev@users.noreply.github.com> Date: Mon, 24 Nov 2025 18:22:31 +1000 Subject: [PATCH] add comment --- src/SharpIDE.Application/Features/Analysis/RoslynAnalysis.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/SharpIDE.Application/Features/Analysis/RoslynAnalysis.cs b/src/SharpIDE.Application/Features/Analysis/RoslynAnalysis.cs index 585347a..990e40a 100644 --- a/src/SharpIDE.Application/Features/Analysis/RoslynAnalysis.cs +++ b/src/SharpIDE.Application/Features/Analysis/RoslynAnalysis.cs @@ -983,6 +983,9 @@ public class RoslynAnalysis(ILogger logger, BuildService buildSe { return false; } + + // This may not be perfect, as None Include="" seems to be returned here as one of the globs as Include, with no distinction of Compile vs None etc + // TODO: Investigate getting the glob type (Compile, None, etc) var matchers = projectFileInfo.FileGlobs.Select(glob => { var matcher = new Matcher();