-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCspdf.csproj
More file actions
41 lines (34 loc) · 1.71 KB
/
Cspdf.csproj
File metadata and controls
41 lines (34 loc) · 1.71 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
40
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<LangVersion>latest</LangVersion>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<!-- NuGet Package Metadata -->
<Authors>Samet UCA</Authors>
<Company>Samet UCA</Company>
<Product>Cspdf PDF Library</Product>
<Description>A comprehensive PDF library for .NET - Create, read, manipulate PDF documents with ease. Full-featured alternative to commercial PDF libraries like iText 7.</Description>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<RepositoryUrl>https://github.com/sametuca/cspdf</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<Version>1.0.1</Version>
<PackageVersion>1.0.1</PackageVersion>
<PackageTags>pdf;document;csharp;dotnet;pdf-generation;pdf-manipulation;itext;pdf-library</PackageTags>
<PackageProjectUrl>https://github.com/sametuca/cspdf</PackageProjectUrl>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageReleaseNotes>v1.0.1: Added demo project example, improved GitHub Actions workflow, and enhanced package metadata.</PackageReleaseNotes>
<Copyright>Copyright © 2024 Cspdf Contributors</Copyright>
<!-- Package Requirements -->
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
</PropertyGroup>
<ItemGroup>
<None Include="README.md" Pack="true" PackagePath="\" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="System.Drawing.Common" Version="8.0.0" />
</ItemGroup>
</Project>