-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSignsOfAI.Desktop.slnx
More file actions
23 lines (19 loc) · 972 Bytes
/
Copy pathSignsOfAI.Desktop.slnx
File metadata and controls
23 lines (19 loc) · 972 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<Solution>
<!--
The desktop app and what it needs, in its own solution.
Why not just add it to SignsOfAI.slnx: that solution is built on ubuntu-latest by three
workflows, and a WPF project cannot be built there. Keeping the Windows-only head in a solution
of its own is what lets the main build stay on Linux — which matters, because that is the build
that gives a translation contributor fast feedback on a pull request.
-->
<Folder Name="/src/">
<Project Path="src/SignsOfAI.Core/SignsOfAI.Core.csproj" />
<Project Path="src/SignsOfAI.Desktop/SignsOfAI.Desktop.csproj" />
<Project Path="src/SignsOfAI.Documents/SignsOfAI.Documents.csproj" />
<Project Path="src/SignsOfAI.UI/SignsOfAI.UI.csproj" />
</Folder>
<Folder Name="/tests/">
<Project Path="tests/SignsOfAI.Core.Tests/SignsOfAI.Core.Tests.csproj" />
<Project Path="tests/SignsOfAI.Desktop.Tests/SignsOfAI.Desktop.Tests.csproj" />
</Folder>
</Solution>