-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCoder.Graph.csproj
More file actions
26 lines (23 loc) · 990 Bytes
/
Copy pathCoder.Graph.csproj
File metadata and controls
26 lines (23 loc) · 990 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<Project>
<Sdk Name="Microsoft.NET.Sdk" />
<Sdk Name="ktsu.Sdk" />
<PropertyGroup>
<!-- ktsu.ImGui.NodeEditor ships net10.0 only, so this library cannot cross-target the way
Coder.Core does. Coder.Core stays free of any UI dependency. -->
<TargetFramework>net10.0</TargetFramework>
<TargetFrameworks></TargetFrameworks>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="ktsu.ImGui.NodeEditor" />
<!-- The physics settings the graph enables are this package's type, named directly rather than
inherited through the node editor. -->
<PackageReference Include="ktsu.ForceDirectedLayout" />
<PackageReference Include="ktsu.UndoRedo.Core" />
<PackageReference Include="Hexa.NET.ImGui" />
<PackageReference Include="Hexa.NET.ImNodes" />
<PackageReference Include="Polyfill" PrivateAssets="all" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Coder.Core\Coder.Core.csproj" />
</ItemGroup>
</Project>