see https://github.com/dotnet/corefx/issues/25766
The netstandard 2.0 version is currently 4.3.1.0 but the netcorepp 2.0 version is 4.3.0.0. Given the netstandard2.0 is supported on netcoreapp2.0 the versions need to match. One of two things needs to happen:
- The NS2.0 ref needs to be frozen to 4.3.0.0 to match what is inbox on netcoreapp2.0
- We need to ship a newer version of the library that works on netcoreapp2.0 in the nuget package OOB, that has version 4.3.1.0
Given there isn't any new API surface I suggest we go with option (1) in the future if we need to add new API then we can decide to unfreeze it and also update our netcoreapp2.0 implementation to match.
cc @bartonjs @ericstj