justinstenning / SharedMemory

C# shared memory classes for sharing data between processes (Array, Buffer and Circular Buffer)
https://www.nuget.org/packages/SharedMemory
Other
566 stars 118 forks source link

Target netstandard20 instead of netcoreapp20 #36

Closed ugumba closed 5 years ago

ugumba commented 5 years ago

Netcoreapp20 assemblies can't be consumed in netstandard20 (or net47+) - the net461 assemblies will be preferred, causing annoying compatibility warnings and yellow signs in VS Dependencies.

Targeting netstandard20 instead covers all bases.

Should fix issue #33.

justinstenning commented 5 years ago

Needed to also include the dependency in the nuspec, done in PR #38.

Thanks for your efforts.