-
Notifications
You must be signed in to change notification settings - Fork 546
Expand file tree
/
Copy pathHtmlRenderer.PdfSharp.csproj
More file actions
38 lines (37 loc) · 1.7 KB
/
HtmlRenderer.PdfSharp.csproj
File metadata and controls
38 lines (37 loc) · 1.7 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>netstandard2.0;net8.0</TargetFrameworks>
<OutputType>Library</OutputType>
<RootNamespace>TheArtOfDev.HtmlRenderer.PdfSharp</RootNamespace>
<UseWinForms>true</UseWinForms>
<GenerateResourceUsePreserializedResources>true</GenerateResourceUsePreserializedResources>
<EnableWindowsTargeting>true</EnableWindowsTargeting>
</PropertyGroup>
<!-- NuGet Package Properties -->
<PropertyGroup>
<PackageId>HtmlRenderer.PdfSharp</PackageId>
<Title>HTML Renderer for PDF using PDFsharp</Title>
<PackageTags>html render renderer draw pdfsharp</PackageTags>
<Description>PDF document generator from HTML snippet, 100% managed (C#), High performance library using PDFsharp.
Features and Benefits:
---
* 100% managed code depends only on the libraries PDFsharp and FontResolver.PdfSharp, no ActiveX, no MSHTML.
* Extensive HTML 4.01 and CSS level 2 specifications support.
* Support separating CSS from HTML by loading stylesheet code separately.
* Handles "real world" malformed HTML, it doesn't have to be XHTML.
* Lightweight, only two DLLs (~300K).
* High performance and low memory footprint.
* Extendable and configurable.</Description>
<Summary>PDF document generator from HTML snippet, 100% managed (C#), High performance library using PdfSharp.</Summary>
</PropertyGroup>
<ItemGroup>
<None Include="README.md" Pack="true" PackagePath="\" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\HtmlRenderer\HtmlRenderer.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="FontResolver.PdfSharp" Version="1.1.0" />
<PackageReference Include="PDFsharp" Version="6.2.3" />
</ItemGroup>
</Project>