-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdotnet-libcpdf.csproj
28 lines (28 loc) · 1.19 KB
/
dotnet-libcpdf.csproj
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Library</OutputType>
<TargetFramework>net5.0</TargetFramework>
<RootNamespace>dotnet_libcpdf</RootNamespace>
<PackageID>CoherentPDF</PackageID>
<Version>2.5.3</Version>
<Authors>Coherent Graphics Ltd</Authors>
<Company>Coherent Graphics Ltd</Company>
<PackageDescription>The Coherent PDF .NET API gives you a wide range of professional, robust tools to modify existing PDF files. For example, merging and splitting, extracting and modifying metadata, imposing, encryption, scaling and adding text.</PackageDescription>
</PropertyGroup>
<PropertyGroup>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
</PropertyGroup>
<PropertyGroup>
<PackageReadmeFile>README.md</PackageReadmeFile>
</PropertyGroup>
<ItemGroup>
<None Include="README.md" Pack="true" PackagePath="README.md"/>
</ItemGroup>
<PropertyGroup>
<PackageLicenseFile>LICENSE.txt</PackageLicenseFile>
</PropertyGroup>
<ItemGroup>
<None Include="LICENSE.txt" Pack="true" PackagePath="LICENSE.txt"/>
</ItemGroup>
</Project>