mirror of
https://github.com/safishamsi/graphify.git
synced 2026-07-16 12:27:06 +00:00
29e57cd295
Adds support for the XML-based `.slnx` solution format (VS 2022 17.13+ replacement for `.sln`). Extracts project references as `contains` edges and build dependencies as `imports` edges. XXE-protected XML parsing with size cap. Wired into `_DISPATCH` and `CODE_EXTENSIONS`. 6 new tests passing. Co-authored-by: bakgaard <bakgaard@users.noreply.github.com>
8 lines
231 B
XML
8 lines
231 B
XML
<Solution>
|
|
<Project Path="src/Domain/Domain.csproj" />
|
|
<Project Path="src/WebApi/WebApi.csproj">
|
|
<BuildDependency Project="src/Domain/Domain.csproj" />
|
|
</Project>
|
|
<Project Path="tests/Tests/Tests.csproj" />
|
|
</Solution>
|