forked from manfromarce/DocSharp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDocSharp.SystemDrawing.csproj
More file actions
31 lines (26 loc) · 1.23 KB
/
DocSharp.SystemDrawing.csproj
File metadata and controls
31 lines (26 loc) · 1.23 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net8.0-windows;net9.0-windows;net10.0-windows;net462</TargetFrameworks>
<ImplicitUsings>disable</ImplicitUsings>
<Nullable>enable</Nullable>
<LangVersion>latest</LangVersion>
</PropertyGroup>
<!-- NuGet package -->
<PropertyGroup>
<AssemblyName>DocSharp.SystemDrawing</AssemblyName>
<AssemblyTitle>DocSharp.SystemDrawing</AssemblyTitle>
<PackageId>DocSharp.SystemDrawing</PackageId>
<Title>DocSharp.SystemDrawing</Title>
<Description>.NET library for converting documents. The DocSharp.SystemDrawing package provides helper functions to convert unsupported images when creating documents, using System.Drawing.Common (Windows only) as graphics library.</Description>
<PackageTags>docx rtf markdown convert converter openxml docsharp images imagesharp</PackageTags>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Svg" Version="3.4.7" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\DocSharp.Common\DocSharp.Common.csproj" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' != 'net462'">
<PackageReference Include="System.Drawing.Common" Version="8.0.22" />
</ItemGroup>
</Project>