You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If you create a net472 application and reference MoreLinq 3.2.0 it will also unnecessarily bring in System.ValueTuple even though the framework already has it.
The way nuget framework resolution works is that it will look for a target framework of the same family. In this case my net472 app is "closets" to net451 of morelinq rather than netstandard2.0 even though that is also compatible.
Can we add another net47 target without a dependency on System.ValueTuple
The benefit for consuming projects is that they do need to load this assembly which improve startup times.
The text was updated successfully, but these errors were encountered:
If you create a net472 application and reference MoreLinq 3.2.0 it will also unnecessarily bring in
System.ValueTuple
even though the framework already has it.The way nuget framework resolution works is that it will look for a target framework of the same family. In this case my net472 app is "closets" to net451 of morelinq rather than netstandard2.0 even though that is also compatible.
See here for more details.
NuGet/Home#5370
Can we add another net47 target without a dependency on
System.ValueTuple
The benefit for consuming projects is that they do need to load this assembly which improve startup times.
The text was updated successfully, but these errors were encountered: