| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- <Project Sdk="Microsoft.NET.Sdk">
- <PropertyGroup>
- <Authors>MarcinZiabek</Authors>
- <Company>CodeFlint</Company>
- <PackageId>QuestPDF</PackageId>
- <Version>2024.3.0</Version>
- <PackageDescription>QuestPDF is an open-source, modern and battle-tested library that can help you with generating PDF documents by offering friendly, discoverable and predictable C# fluent API. Easily generate PDF reports, invoices, exports, etc.</PackageDescription>
- <PackageReleaseNotes>$([System.IO.File]::ReadAllText("$(MSBuildProjectDirectory)/Resources/ReleaseNotes.txt"))</PackageReleaseNotes>
- <LangVersion>10</LangVersion>
- <GeneratePackageOnBuild>true</GeneratePackageOnBuild>
- <EnablePackageValidation>true</EnablePackageValidation>
- <PackageIcon>Logo.png</PackageIcon>
- <PackageIconUrl>https://www.questpdf.com/images/package-logo.png</PackageIconUrl>
- <PackageProjectUrl>https://www.questpdf.com/</PackageProjectUrl>
- <PackageReadmeFile>PackageReadme.md</PackageReadmeFile>
- <PackageLicenseFile>PackageLicense.md</PackageLicenseFile>
- <PackageRequireLicenseAcceptance>True</PackageRequireLicenseAcceptance>
- <RepositoryUrl>https://github.com/QuestPDF/library.git</RepositoryUrl>
- <RepositoryType>git</RepositoryType>
- <Copyright>Marcin Ziąbek, QuestPDF contributors</Copyright>
- <PackageTags>PDF;C#;dotnet;csharp;.NET;PDF library;PDF document;PDF generation;PDF creation;PDF report;PDF invoice;PDF export;windows;linux;mac;azure;aws;open-source;open source;free;adobe;file;SVG;HTML;XPS</PackageTags>
- <Nullable>enable</Nullable>
- <TargetFrameworks>net8.0;net6.0;netstandard2.0</TargetFrameworks>
- <IncludeSymbols>true</IncludeSymbols>
- <SymbolPackageFormat>snupkg</SymbolPackageFormat>
- <GenerateDocumentationFile>True</GenerateDocumentationFile>
- <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
- </PropertyGroup>
- <ItemGroup>
- <InternalsVisibleTo Include="DynamicProxyGenAssembly2" />
- <InternalsVisibleTo Include="QuestPDF.UnitTests" />
- <InternalsVisibleTo Include="QuestPDF.LayoutTests" />
- </ItemGroup>
- <ItemGroup>
- <None Include="Resources\**\*.*">
- <Pack>true</Pack>
- <PackagePath>%(RecursiveDir)\%(Filename)%(Extension)</PackagePath>
- </None>
-
- <None Include="LatoFont\*.*">
- <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
- <CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
- <Pack>true</Pack>
- <PackagePath>runtimes\any\native\LatoFont\%(RecursiveDir)%(Filename)%(Extension)</PackagePath>
- </None>
-
- <None Include="Runtimes\**\*.*">
- <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
- <CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
- <Pack>true</Pack>
- <PackagePath>runtimes\%(RecursiveDir)%(Filename)%(Extension)</PackagePath>
- </None>
- <None Include="Build\**\*.*">
- <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
- <CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
- <Pack>true</Pack>
- <PackagePath>build\%(RecursiveDir)%(Filename)%(Extension)</PackagePath>
- </None>
- </ItemGroup>
- </Project>
|