Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/corefx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJulien Couvreur <jcouv@users.noreply.github.com>2017-04-20 23:44:14 +0300
committerGitHub <noreply@github.com>2017-04-20 23:44:14 +0300
commit82a26c8d9f2065a5f4e91c6b09549edcbf1ae625 (patch)
treebdcc9bbee8f5d9a063c02118363fa41818b09b74 /external
parentd8486729f7d98084b16a8680bc6b2fc6ae24d941 (diff)
Adding type-forwards for ValueTuple to desktop 4.7 (#18519)
Diffstat (limited to 'external')
-rw-r--r--external/netfx/Configurations.props3
-rw-r--r--external/netfx/netfx.depproj5
2 files changed, 5 insertions, 3 deletions
diff --git a/external/netfx/Configurations.props b/external/netfx/Configurations.props
index 166062996f..47bdffcb28 100644
--- a/external/netfx/Configurations.props
+++ b/external/netfx/Configurations.props
@@ -9,9 +9,10 @@
net461;
net462;
net463;
+ net47;
netfx;
netcoreapp;
uap;
</BuildConfigurations>
</PropertyGroup>
-</Project> \ No newline at end of file
+</Project>
diff --git a/external/netfx/netfx.depproj b/external/netfx/netfx.depproj
index db115c3212..db71e0bce9 100644
--- a/external/netfx/netfx.depproj
+++ b/external/netfx/netfx.depproj
@@ -19,7 +19,8 @@
</PropertyGroup>
<ItemGroup>
<PackageReference Include="$(TargetingPackNugetPackageId)">
- <Version>1.0.1</Version>
+ <Version Condition="'$(TargetGroup)' != 'net47'">1.0.1</Version>
+ <Version Condition="'$(TargetGroup)' == 'net47'">1.0.0-prerelease</Version>
</PackageReference>
</ItemGroup>
<ItemGroup>
@@ -33,4 +34,4 @@
<FileToExclude Include="System.EnterpriseServices.Wrapper" />
</ItemGroup>
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), dir.targets))\dir.targets" />
-</Project> \ No newline at end of file
+</Project>