-
Notifications
You must be signed in to change notification settings - Fork 317
Expand file tree
/
Copy pathTest01.csproj
More file actions
77 lines (68 loc) · 2.87 KB
/
Test01.csproj
File metadata and controls
77 lines (68 loc) · 2.87 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFrameworks>net6.0-windows;net8.0-windows;net9.0-windows;net10.0-windows</TargetFrameworks>
<RootNamespace>Test01</RootNamespace>
<AssemblyName>Test01</AssemblyName>
<Platforms>x86;x64;AnyCPU</Platforms>
<Configurations>Debug;Release</Configurations>
<UseWPF>false</UseWPF>
<UseWindowsForms>true</UseWindowsForms>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\..\Drawing\AutomaticGraphLayout.Drawing.csproj" />
<ProjectReference Include="..\..\tools\GraphViewerGDI\GraphViewerGDI.csproj" />
<ProjectReference Include="..\..\tools\ArgsParser\ArgsParser.csproj" />
<ProjectReference Include="..\..\tools\Dot2Graph\Dot2Graph.csproj" />
<ProjectReference Include="..\..\tools\QUT.ShiftReduceParser\QUT.ShiftReduceParser.csproj" />
<ProjectReference Include="..\..\MSAGL\AutomaticGraphLayout.csproj" />
<ProjectReference Include="..\TestFormForGViewer\TestFormForGViewer.csproj" />
</ItemGroup>
<ItemGroup>
<Compile Update="Properties\Settings.Designer.cs">
<DesignTimeSharedInput>True</DesignTimeSharedInput>
<AutoGen>True</AutoGen>
<DependentUpon>Settings.settings</DependentUpon>
</Compile>
</ItemGroup>
<ItemGroup>
<None Update="..\MSAGLTests\Resources\MSAGLGeometryGraphs\GraphModelGrouped.msagl.geom">
<Link>Data\GraphModelGrouped.msagl.geom</Link>
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="..\MSAGLTests\Resources\MSAGLGeometryGraphs\graphWithGroups.msagl.geom">
<Link>Data\graphWithGroups.msagl.geom</Link>
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="..\MSAGLTests\Resources\MSAGLGeometryGraphs\K20.msagl.geom">
<Link>Data\K20.msagl.geom</Link>
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="app.config" />
<None Update="Data\complex.msagl.geom">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="graph10_25.msagl.geom">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="graphWithBug.msagl.geom">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="Data\prob0.msagl.geom">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="polys">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="Properties\Settings.settings">
<Generator>SettingsSingleFileGenerator</Generator>
<LastGenOutput>Settings.Designer.cs</LastGenOutput>
</None>
<None Update="triangles1">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="triangles2">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>