joaoportela / CircularBuffer-CSharp

A simple, single file, implementation of a circular buffer in C#.
The Unlicense
228 stars 45 forks source link

Adds net461 Target #46

Closed Silvenga closed 2 years ago

Silvenga commented 2 years ago

Per best practices, when targeting netstandard2.0, a net461 should be included (https://docs.microsoft.com/en-us/dotnet/standard/library-guidance/cross-platform-targeting).

Functionally, this prevents needing to reference all of netstandard2.0 in .NET Framework (and prevents bugs in older version of .NET Framework). With modern .NET tooling, this should continue to build fine under Linux and friends.

joaoportela commented 2 years ago

The specific recommendation you mentioned:

image

Silvenga commented 2 years ago

Thanks!