-
Notifications
You must be signed in to change notification settings - Fork 847
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
Changes from all commits
5a4afaf
d135f0f
e8da030
bf80d4e
d69fd03
5232f8f
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -59,12 +59,13 @@ | |
| <Project>{DED3BBD7-53F4-428A-8C9F-27968E768605}</Project> | ||
| <Name>FSharp.Core</Name> | ||
| </ProjectReference> | ||
| <Reference Include="System.ValueTuple" Condition="'$(TargetFramework)' != 'portable47'"> | ||
| <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> | ||
| <HintPath Condition=" '$(TargetFramework)' != 'coreclr' and '$(TargetFramework)' != 'profile47' ">..\..\..\packages\System.ValueTuple.4.4.0-beta-24631-01\lib\portable-net40+sl4+win8+wp8\System.ValueTuple.dll</HintPath> | ||
| <Private>True</Private> | ||
| </Reference> | ||
| <Reference Include="TupleSample" Condition="'$(TargetFramework)' != 'portable47'"> | ||
| <Reference Include="TupleSample"> | ||
| <HintPath Condition=" '$(TargetFramework)' == 'coreclr' ">FSharp.Core\SampleTuples\4.0.0-rc3-24212-01\TupleSample.dll</HintPath> | ||
| <HintPath Condition=" '$(TargetFramework)' != 'coreclr' ">FSharp.Core\SampleTuples\4.4.0-beta-24631-01\TupleSample.dll</HintPath> | ||
| <Private>True</Private> | ||
|
|
@@ -93,29 +94,29 @@ | |
| </ItemGroup> | ||
| <ItemGroup> | ||
| <Compile Include="LibraryTestFx.fs" /> | ||
| <Compile Include="FSharp.Core\Microsoft.FSharp.Collections\Utils.fs" Condition="'$(TargetFramework)' != 'portable47'" /> | ||
| <Compile Include="FSharp.Core\Microsoft.FSharp.Collections\Utils.fs" Condition=" '$(TargetFramework)' != 'portable47' " /> | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Duplicate line?
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. yep |
||
| <Compile Include="FSharp.Core\Microsoft.FSharp.Collections\ArrayModule.fs" /> | ||
| <Compile Include="FSharp.Core\Microsoft.FSharp.Collections\ArrayModule2.fs" /> | ||
| <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'" /> | ||
| <Compile Include="FSharp.Core\Microsoft.FSharp.Collections\ArrayProperties.fs" Condition=" '$(TargetFramework)' != 'portable47' " /> | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Duplicate line? |
||
| <Compile Include="FSharp.Core\Microsoft.FSharp.Collections\ComparisonIdentityModule.fs" /> | ||
| <Compile Include="FSharp.Core\Microsoft.FSharp.Collections\HashIdentityModule.fs" /> | ||
| <Compile Include="FSharp.Core\Microsoft.FSharp.Collections\ListModule.fs" /> | ||
| <Compile Include="FSharp.Core\Microsoft.FSharp.Collections\ListModule2.fs" /> | ||
| <Compile Include="FSharp.Core\Microsoft.FSharp.Collections\ObsoleteListFunctions.fs" /> | ||
| <Compile Include="FSharp.Core\Microsoft.FSharp.Collections\ListType.fs" /> | ||
| <Compile Include="FSharp.Core\Microsoft.FSharp.Collections\ListProperties.fs" Condition="'$(TargetFramework)' != 'portable47'" /> | ||
| <Compile Include="FSharp.Core\Microsoft.FSharp.Collections\ListProperties.fs" Condition=" '$(TargetFramework)' != 'portable47' " /> | ||
| <Compile Include="FSharp.Core\Microsoft.FSharp.Collections\MapModule.fs" /> | ||
| <Compile Include="FSharp.Core\Microsoft.FSharp.Collections\MapType.fs" /> | ||
| <Compile Include="FSharp.Core\Microsoft.FSharp.Collections\SetModule.fs" /> | ||
| <Compile Include="FSharp.Core\Microsoft.FSharp.Collections\SetType.fs" /> | ||
| <Compile Include="FSharp.Core\Microsoft.FSharp.Collections\SeqModule.fs" /> | ||
| <Compile Include="FSharp.Core\Microsoft.FSharp.Collections\SeqModule2.fs" /> | ||
| <Compile Include="FSharp.Core\Microsoft.FSharp.Collections\ObsoleteSeqFunctions.fs" /> | ||
| <Compile Include="FSharp.Core\Microsoft.FSharp.Collections\SeqProperties.fs" Condition="'$(TargetFramework)' != 'portable47'" /> | ||
| <Compile Include="FSharp.Core\Microsoft.FSharp.Collections\CollectionModulesConsistency.fs" Condition="'$(TargetFramework)' != 'portable47'" /> | ||
| <Compile Include="FSharp.Core\Microsoft.FSharp.Collections\SeqProperties.fs" Condition=" '$(TargetFramework)' != 'portable47' " /> | ||
| <Compile Include="FSharp.Core\Microsoft.FSharp.Collections\CollectionModulesConsistency.fs" Condition=" '$(TargetFramework)' != 'portable47' " /> | ||
| <Compile Include="FSharp.Core\Microsoft.FSharp.Collections\StringModule.fs" /> | ||
| <Compile Include="FSharp.Core\PrimTypes.fs" /> | ||
| <Compile Include="FSharp.Core\ComparersRegression.fs" /> | ||
|
|
@@ -138,7 +139,7 @@ | |
| <Compile Include="FSharp.Core\Microsoft.FSharp.Reflection\FSharpReflection.fs" /> | ||
| <Compile Include="FSharp.Core\Microsoft.FSharp.Quotations\FSharpQuotations.fs" /> | ||
| <Compile Include="TypeForwarding.fs" /> | ||
| <Compile Include="StructTuples.fs" Condition="'$(TargetFramework)' != 'portable47'" /> | ||
| <Compile Include="StructTuples.fs" /> | ||
| <Compile Include="SurfaceArea.$(TargetFramework).fs" /> | ||
| <Compile Include="Program.fs" Condition="'$(TargetFramework)' == 'coreclr'" /> | ||
| <CustomCopyLocal Include="FSharp.Core.Unittests.dll.config"> | ||
|
|
||
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?