Looking for support for PDF loading and storing feature #470
Replies: 2 comments 7 replies
-
How to express dependencies between nuget packages: You define dependencies using
NuGet supports the following version range notations:
|
Beta Was this translation helpful? Give feedback.
-
PDFSharp always overwrites the xmp metadata when saving the PDF file with their own values. You can check this by setting a breakpoint to line
in method "_CreateFacturXStream" of class "InvoiceDescriptorPdfSaver" and check the content of the "/Metadata" entry. Overwriting the xmp metadata happens in the last line of method "PrepareForSave" of class "PdfDocument":
There's an open pull request for PDFSharp for fixing this problem (issue #44) since october 2023, but the developer(s) of PDFSharp want to have their own values in the xmp metadata. |
Beta Was this translation helpful? Give feedback.
-
Hi,
I have started porting the code from
https://github.com/Securibox/facturx/tree/main/Securibox.FacturX
into this library.
Therefore, I have created a dedicated project that I'm planning to put on nuget separately to the original package:
https://github.com/stephanstapel/ZUGFeRD-csharp/tree/master/ZUGFeRD.PDF
Three things need some help:
Does anyone know how to express dependencies between nuget packages? I.e. the new component needs the ZUGFeRD-csharp component and also PdfSharp and I guess that needs to be put somewhere in the package description?!Beta Was this translation helpful? Give feedback.
All reactions