Because of [https://github.com/tuist/XcodeProj/issues/880], I have just migrated my project from using XcodeProj to XcodeGraph and I'm seeing a major performance regression. On a typical app project,

with only a handful of files and dependencies, the call try await mapper.map(at: self.projectPath) takes a whopping 6(!) seconds (in release mode, on a 20-core Mac Studio) to parse the project.
Since my project itself only has few files, it can only be the scanning of the dependencies – which are completely irrelevant for my project as I'm only interested in the main target resource files. Is there a way to defer some of the work to when I'm actually accessing the properties?
Because of [https://github.com/tuist/XcodeProj/issues/880], I have just migrated my project from using
XcodeProjtoXcodeGraphand I'm seeing a major performance regression. On a typical app project,with only a handful of files and dependencies, the call
try await mapper.map(at: self.projectPath)takes a whopping 6(!) seconds (in release mode, on a 20-core Mac Studio) to parse the project.Since my project itself only has few files, it can only be the scanning of the dependencies – which are completely irrelevant for my project as I'm only interested in the main target resource files. Is there a way to defer some of the work to when I'm actually accessing the properties?