From 8cfc80bf0156a942a47daee6cf3004cc89d63610 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Tue, 3 Feb 2026 14:50:24 +0000 Subject: [PATCH 1/2] Initial plan From 88ed0e8d7a06193ac607ee878613047d0186ae76 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Tue, 3 Feb 2026 14:53:05 +0000 Subject: [PATCH 2/2] docs: update BuildSearchDirectories comment to reflect removal of sibling check Co-authored-by: HandyS11 <62420910+HandyS11@users.noreply.github.com> --- .../Services/EfAnalysis/EntityFileDiscovery.cs | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/src/ProjGraph.Lib/Services/EfAnalysis/EntityFileDiscovery.cs b/src/ProjGraph.Lib/Services/EfAnalysis/EntityFileDiscovery.cs index ea3c68e..b22b554 100644 --- a/src/ProjGraph.Lib/Services/EfAnalysis/EntityFileDiscovery.cs +++ b/src/ProjGraph.Lib/Services/EfAnalysis/EntityFileDiscovery.cs @@ -86,18 +86,16 @@ public static async Task> DiscoverBaseClassFilesAsync } /// - /// Builds a list of directories to search for entity files based on the provided context directory - /// and a list of entity namespaces. + /// Builds a list of directories to search for entity files based on the provided context directory. /// /// The directory containing the context file. /// - /// A list of directories to search for entity files, including the context directory, its parent directory, - /// and any sibling directories that are likely to contain entity files. + /// A list of directories to search for entity files, including the context directory and its parent directory. /// /// /// This method starts with the context directory and then its parent directory. /// Since the parent directory scan is recursive, it will naturally include the context directory - /// and all siblings. The sibling check is kept as a fallback for non-nested structures. + /// and all siblings through the recursive search. /// public static List BuildSearchDirectories( string contextDirectory)