I've just created console F# application for dotnet core 2.
VS shows exclamation mark on System.ValueType (4.3.1)
package.
I know this reference is implicit:
<PackageReference Include="System.ValueTuple" Version="4.*" Condition=" '$(DisableImplicitSystemValueTupleReference)' != 'true' and '$(_FrameworkNeedsValueTupleReference)' == 'true' ">
</PackageReference>
But NuGet seems to be not ok with the situation. This might be somehow related to this bug, however package manager does not even show System.ValueTuple
among referenced packages. Though I see the library when publish application as self contained.
Should I just ignore this or is it indeed an indication of some problem?