Confused about the target platforms for Nuget package #567
-
Hi, Looking at the nuget package explorer for the core Faster nuget package: I am a bit confused. Why is there .NET Standard 2.0 and 2.1 both? Given 2.1 should be backward compatible, why is there an explicit 2.1? 2.0 should be consumable by .NET Standard 2.1 projects. There is also net461, so I'm under the impression that all functionality is supported for these TFMs. Would not this make 2.1 redundant? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
We have .NET standard 2.0 compatibility so that UWP apps can use FASTER. There are some more efficient APIs available in 2.1 that we conditionally compile into the binary for 2.1, so if you use that one you get the performance benefits. |
Beta Was this translation helpful? Give feedback.
We have .NET standard 2.0 compatibility so that UWP apps can use FASTER. There are some more efficient APIs available in 2.1 that we conditionally compile into the binary for 2.1, so if you use that one you get the performance benefits.