ststeiger / PdfSharpCore

Port of the PdfSharp library to .NET Core - largely removed GDI+ (only missing GetFontData - which can be replaced with freetype2)
Other
1.07k stars 238 forks source link

pdfsharp BrowsableAttribute override System.BrowsableAttribute for all the project #76

Open brunofrance opened 4 years ago

brunofrance commented 4 years ago

Hi,

I have a problem using BrowsableAttribute on my project (for something else than pdf), because it found an overrided BrowsableAttribute in pdfsharp and automatically associate with it ! Can you use the existing BrowsableAttribute or use it on another namespace that System ?

Marv51 commented 4 years ago

Try [System.Browsable] in your code, this is the same as the issue I just opened in #102. The reason is some incomplete #if in silverlight compatibility code.