curiosity-ai / rocksdb-sharp

.net bindings for the rocksdb by facebook
BSD 2-Clause "Simplified" License
155 stars 38 forks source link

netstandard 2.0 support #11

Closed khalluudi closed 2 years ago

khalluudi commented 3 years ago

We are using rocksdb-sharp in a project that is a mix of .NETStandard 2.0, .NET Core 3.1, and .NET Framework 4.8 All the reusable components are written in .NET Standard 2.0. The Framework and .NET Core project reference those netstandard 2.0 projects.

Unfortunately, we can't use the latest version of rocksdb-sharp as .netstandard 2.0 is not supported. Moving to .NETStandard 2.1 or .NET 5 would require us to do major changes, more or less and architecture overhaul. I stumbled across this issue and followed the recommendation of using the nuget package that supports .netstandard 2.0 which is 5 months old: https://github.com/curiosity-ai/rocksdb-sharp/issues/6

When would be a rough timeline on when .NET Standard 2.1 support will be returned?

Thank you for developing and maintaining rocksdb-sharp