ssg / SimpleBase

.NET library for encoding/decoding Base16, Base32, Base58 and Base85.
Apache License 2.0
147 stars 21 forks source link

Target netstandard2.0 #20

Closed cmeeren closed 3 years ago

cmeeren commented 3 years ago

Is there any reason this library can't target netstandard2.0 instead of netstandard2.1? The latter would make it compatible with .NET 4.7.

ssg commented 3 years ago

Hi @cmeeren, .NET Standard 2.1 includes Span<T> which I use to increase performance. Unfortunately, they aren't in .NET Standard 2.0. You can use older versions of the library that are .NET Framework compatible if they work for your use cases?

cmeeren commented 3 years ago

Yes, that works for me. Thanks for the clarification!