-
Notifications
You must be signed in to change notification settings - Fork 545
Expand file tree
/
Copy pathHtmlRenderer.PdfSharp.csproj
More file actions
39 lines (38 loc) · 1.67 KB
/
HtmlRenderer.PdfSharp.csproj
File metadata and controls
39 lines (38 loc) · 1.67 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net462</TargetFramework>
<OutputType>Library</OutputType>
<RootNamespace>TheArtOfDev.HtmlRenderer.PdfSharp</RootNamespace>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<GenerateResourceUsePreserializedResources>true</GenerateResourceUsePreserializedResources>
</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 PdfSharp library, 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>
<Compile Include="..\SharedAssemblyInfo.cs">
<Link>Properties\SharedAssemblyInfo.cs</Link>
</Compile>
<None Include="README.md" Pack="true" PackagePath="\" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\HtmlRenderer\HtmlRenderer.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="PDFsharp" Version="1.50.5147" />
</ItemGroup>
</Project>