Files
Rasmus Bækgaard 29e57cd295 feat: add .slnx solution file support (#1189)
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>
2026-06-08 10:35:32 +01:00

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>