Hello,
Im using this control to sign my pdf on a new console project on NET 6
PdfLoadedDocument document = new PdfLoadedDocument(MyPDF);
PdfSignature signature = new PdfSignature(document, document.Pages[0], null, "DigitalSignature");
signature.ComputeHash += Signature_ComputeHash;
in the line new pdfsignature recibe following error:
System.IO.FileNotFoundException: 'Could not load file or assembly 'System.Drawing.Common, Version=4.0.2.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51'.
hope you can help me.
Martin