MiloszKrajewski / K4os.Compression.LZ4

LZ4/LH4HC compression for .NET Standard 1.6/2.0 (formerly known as lz4net)
MIT License
675 stars 77 forks source link

Use package references #65

Closed tibel closed 2 years ago

tibel commented 2 years ago

Migrate from paket to csproj package references. Add framework constraints to System.Memory reference (fixes #63).

MiloszKrajewski commented 2 years ago

Is there any specific problem you are trying to address?

tibel commented 2 years ago

Ah, sorry. My description was to short...

It is all about resolving issue #63: Remove System.Memory dependency for .NET Standard 2.1 and .NET 5.0

As I didn't find a solution to use conditional framework dependencies with paket, I migrated the projects to PackageReference.

redwyre commented 2 years ago

as an alternative it seems like in paket.dependencies you could do something like:

nuget System.Memory framework: != netstandard2.1

Though I don't understand what the benefits of paket are.

MiloszKrajewski commented 2 years ago

Added in 1.2.16