forked from manfromarce/DocSharp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDocSharp.ImageSharp.csproj
More file actions
33 lines (30 loc) · 1.51 KB
/
DocSharp.ImageSharp.csproj
File metadata and controls
33 lines (30 loc) · 1.51 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net8.0;net9.0;net10.0</TargetFrameworks>
<ImplicitUsings>disable</ImplicitUsings>
<Nullable>enable</Nullable>
<LangVersion>latest</LangVersion>
</PropertyGroup>
<!-- NuGet package -->
<PropertyGroup>
<AssemblyName>DocSharp.ImageSharp</AssemblyName>
<AssemblyTitle>DocSharp.ImageSharp</AssemblyTitle>
<PackageId>DocSharp.ImageSharp</PackageId>
<Title>DocSharp.ImageSharp</Title>
<Description>.NET library for converting documents. The DocSharp.ImageSharp package provides helper functions to convert unsupported images when creating documents, using ImageSharp as graphics library.</Description>
<PackageTags>docx rtf markdown convert converter openxml docsharp images imagesharp</PackageTags>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="SixLabors.ImageSharp" Version="3.1.12" />
<PackageReference Include="SixLabors.ImageSharp.Drawing" Version="2.1.7" />
<PackageReference Include="SixLabors.Fonts" Version="2.1.3" />
<PackageReference Include="VectSharp.SVG" Version="1.10.2" />
<PackageReference Include="VectSharp.Raster.ImageSharp" Version="2.1.0" />
<PackageReference Include="VectSharp.ImageSharpUtils" Version="2.0.1" />
<PackageReference Include="ExCSS" Version="4.3.1" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\DocSharp.Common\DocSharp.Common.csproj" />
</ItemGroup>
</Project>