drewnoakes / metadata-extractor-dotnet

Extracts Exif, IPTC, XMP, ICC and other metadata from image, video and audio files
Other
922 stars 164 forks source link

Remove net3.5 target #358

Closed drewnoakes closed 7 months ago

drewnoakes commented 7 months ago

.NET Framework 3.5 was released in 2007. Continued support of that target prohibits taking advantage of newer APIs, such as Span<T> (via the System.Memory package). Spans unlock the potential for better performance when parsing data.

It's been many years since I've heard of anyone using this target. Anyone who does still need it can remain on version 2.8.1 or earlier.