JoshClose / CsvHelper

Library to help reading and writing CSV files
http://joshclose.github.io/CsvHelper/
Other
4.65k stars 1.05k forks source link

.NET 4.6.2 is not properly supported #2173

Closed ManelBH closed 6 months ago

ManelBH commented 11 months ago

Describe the bug When trying to compile the project I notice it fails because of the .NET 4.6.2 target. This does not compile:

<TargetFrameworks>net6.0;netstandard2.1;netstandard2.0;net47;net462</TargetFrameworks>

This does:

<TargetFrameworks>net6.0;netstandard2.1;netstandard2.0;net47</TargetFrameworks>

I notice this is one of the last changes, replacing net45 with net462 in the targetted frameworks, but the project and the compilation rules weren't updated accordingly and they are still referencing 4.5:

image

Is there an intention to maintain support for 4.6.2? Maybe this target should just be removed.

TrevorMcCubbin commented 11 months ago

Is addressed in #2113. It is currently approved and waiting to be merged.

JoshClose commented 6 months ago

Should be fixed.