-
Notifications
You must be signed in to change notification settings - Fork 842
Add tuple tests to portable47 #1702
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add tuple tests to portable47 #1702
Conversation
| <Compile Include="FSharp.Core\Microsoft.FSharp.Collections\Array2Module.fs" /> | ||
| <Compile Include="FSharp.Core\Microsoft.FSharp.Collections\Array3Module.fs" /> | ||
| <Compile Include="FSharp.Core\Microsoft.FSharp.Collections\Array4Module.fs" /> | ||
| <Compile Include="FSharp.Core\Microsoft.FSharp.Collections\ArrayProperties.fs" Condition=" '$(TargetFramework)' != 'portable47' " /> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Duplicate line?
| </ItemGroup> | ||
| <ItemGroup> | ||
| <Compile Include="LibraryTestFx.fs" /> | ||
| <Compile Include="FSharp.Core\Microsoft.FSharp.Collections\Utils.fs" Condition=" '$(TargetFramework)' != 'portable47' " /> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Duplicate line?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
yep
|
Looks good |
| <Reference Include="System.ValueTuple"> | ||
| <HintPath Condition=" '$(TargetFramework)' == 'coreclr' ">..\..\..\packages\System.ValueTuple.4.0.0-rc3-24212-01\lib\netstandard1.1\System.ValueTuple.dll</HintPath> | ||
| <HintPath Condition=" '$(TargetFramework)' != 'coreclr' ">..\..\..\packages\System.ValueTuple.4.4.0-beta-24631-01\lib\netstandard1.0\System.ValueTuple.dll</HintPath> | ||
| <HintPath Condition=" '$(TargetFramework)' == 'profile47' ">..\..\..\packages\System.ValueTuple.4.4.0-beta-24631-01\lib\netstandard1.0\System.ValueTuple.dll</HintPath> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why all these different versions? Why not just one version?
This reverts commit bf80d4e.
Now that we have a tuple dll that supports portable47, enable the tuple tests in core unit tests for the profile47 version of fsharp.core.dll