-
Notifications
You must be signed in to change notification settings - Fork 317
Expand file tree
/
Copy pathGraphViewerGDI.csproj
More file actions
27 lines (26 loc) · 1.26 KB
/
GraphViewerGDI.csproj
File metadata and controls
27 lines (26 loc) · 1.26 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
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
<PropertyGroup>
<TargetFrameworks>net472;net6.0-windows;net8.0-windows;net9.0-windows;net10.0-windows</TargetFrameworks>
<OutputType>Library</OutputType>
<RootNamespace>Microsoft.Msagl.GraphViewerGdi</RootNamespace>
<AssemblyName>Microsoft.Msagl.GraphViewerGdi</AssemblyName>
<UseWindowsForms>true</UseWindowsForms>
<NuspecFile>GraphViewerGDI.nuspec</NuspecFile>
<IsPackable>true</IsPackable>
<NoWarn>1591,CA1416</NoWarn>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<GenerateResourceUsePreserializedResources>true</GenerateResourceUsePreserializedResources>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\..\Drawing\AutomaticGraphLayout.Drawing.csproj" />
<ProjectReference Include="..\..\MSAGL\AutomaticGraphLayout.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="DotNet.ReproducibleBuilds" Version="1.1.1">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="System.Resources.Extensions" Version="7.0.0" />
</ItemGroup>
</Project>