"Obsolete and not implemted any more." exception with PdfGenerator.ParseStylesheet method
I have this line of code in my application
Line 268: var cssData = PdfGenerator.ParseStyleSheet(Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "Content/bootstrap.min.css"));
and I am getting an exception

I would like to enclose the version details of individual assemblies below.




I ran into this too today. My digging found that the NuGet package PdfSharp was updated from 1.32.3057 (released 2013-05-16) to 1.50.5147 (released 2019-02-04), and in this new version there's some methods now throwing InvalidOperationException("Obsolete and not implemted any more."). For example, https://github.com/empira/PDFsharp/blob/1.50-stable/src/PdfSharp/Drawing/XFontFamily.cs line 278.
To get rid of this error, you can downgrade PdfSharp. It would be nice if this project could either indicate it doesn't support later versions of PdfSharp, or was updated to use the latest.
I guess there is no chance of this being fixed and a new update for the NuGet pakket being released?