-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathPdfTemplating.XslFO.Common.csproj
More file actions
30 lines (26 loc) · 1.99 KB
/
Copy pathPdfTemplating.XslFO.Common.csproj
File metadata and controls
30 lines (26 loc) · 1.99 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<RootNamespace>PdfTemplating</RootNamespace>
<Authors>BBernard / CajunCoding</Authors>
<Company>CajunCoding.com</Company>
<Description>This project contains the common interfaces and shared foundational classes for the PdfTemplating.XslFO projects. The PdfTemplating.XslFO projects are It is based on the Xsl-FO standard for rendering robust paged media outputs as PDF Documents from using a templating approach. They enable the use of Xslt or Razor Mvc templates combined with ApacheFOP.Serverless or Fonet rendering into Binary Pdf documents; and any combination between as well as custom implementations using these Common interfaces.</Description>
<Version>3.1</Version>
<Copyright>Copyright © 2020</Copyright>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/cajuncoding/PdfTemplating.XslFO</PackageProjectUrl>
<RepositoryUrl>https://github.com/cajuncoding/PdfTemplating.XslFO</RepositoryUrl>
<PackageTags>adobe acrobat pdf template razor xslt xslfo xsl-fo xsl fo portrait landscape fluid width apache fop apache-fop formatting objects itext itextsharp pdfsharp evopdf ironpdf spire freespire expertpdf</PackageTags>
<PackageReleaseNotes>
- Breaking Namespace changes for CustomExtensions to reduce risk of conflicts.
Prior Release Notes:
- Refactored Interfaces to better support Dependency Injection; some small breaking changes to method signatures.
- Enhancements to enable the new Asp.NET Core Razor Renderer implementation.
- Initial relase of the common interfaces.
- Initial support for fully de-coupling the Templating and Rendering processes thereby enabling the new ApacheFOP.Serverless rendering approach without any dependency on the legacy Fonet (in-memory) rendering.
</PackageReleaseNotes>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Newtonsoft.Json" Version="13.0.2" />
</ItemGroup>
</Project>