-
Notifications
You must be signed in to change notification settings - Fork 50
Expand file tree
/
Copy pathHTMLToQPDF.csproj
More file actions
39 lines (34 loc) · 1.35 KB
/
HTMLToQPDF.csproj
File metadata and controls
39 lines (34 loc) · 1.35 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>net6.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<Title>Relorer.QuestPDF.HTML</Title>
<Company></Company>
<Authors>Relorer</Authors>
<Description>Relorer.QuestPDF.HTML is an extension for QuestPDF that allows to generate PDF from HTML</Description>
<PackageProjectUrl>https://github.com/Relorer/HTMLToQPDF</PackageProjectUrl>
<PackageIcon>icon.png</PackageIcon>
<PackageReadmeFile>README.md</PackageReadmeFile>
<RepositoryUrl>https://github.com/Relorer/HTMLToQPDF</RepositoryUrl>
<PackageTags>pdf, file, export, generate, generation, tool, create, creation, render, document, format, quest, html, library, converter, open, source, free, standard, core</PackageTags>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<Version>1.1.0</Version>
</PropertyGroup>
<ItemGroup>
<None Include="..\README.md">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>
<ItemGroup>
<PackageReference Include="HtmlAgilityPack" Version="1.11.59" />
<PackageReference Include="QuestPDF" Version="2023.12.5" />
</ItemGroup>
<ItemGroup>
<None Include="Assets\icon.png">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>
</Project>