-
Notifications
You must be signed in to change notification settings - Fork 317
Expand file tree
/
Copy pathTestGraphmaps.csproj
More file actions
30 lines (26 loc) · 1.24 KB
/
TestGraphmaps.csproj
File metadata and controls
30 lines (26 loc) · 1.24 KB
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
27
28
29
30
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<RootNamespace>TestGraphmaps</RootNamespace>
<AssemblyName>TestGraphmaps</AssemblyName>
<TargetFrameworks>net8.0-windows;net9.0-windows;net10.0-windows</TargetFrameworks>
<UseWPF>true</UseWPF>
<NoWarn>CS8618;CS8603</NoWarn>
<StartupObject>TestGraphmaps.App</StartupObject>
</PropertyGroup>
<ItemGroup>
<!-- Project References -->
<ProjectReference Include="..\..\Drawing\AutomaticGraphLayout.Drawing.csproj" />
<ProjectReference Include="..\..\tools\GraphmapsWpfControl\GraphmapsWpfControl.csproj" />
<ProjectReference Include="..\..\MSAGL\AutomaticGraphLayout.csproj" />
<ProjectReference Include="..\..\tools\ArgsParser\ArgsParser.csproj" />
<ProjectReference Include="..\..\tools\DgmlParser\DgmlParser.csproj" />
<ProjectReference Include="..\..\tools\Dot2Graph\Dot2Graph.csproj" />
<ProjectReference Include="..\..\tools\GraphViewerGDI\GraphViewerGDI.csproj" />
<ProjectReference Include="..\..\tools\QUT.ShiftReduceParser\QUT.ShiftReduceParser.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.11.1" />
<PackageReference Include="MSTest" Version="3.6.1" />
</ItemGroup>
</Project>