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:
authorEric St. John <ericstj@microsoft.com>2016-09-22 02:12:38 +0300
committerEric StJohn <ericstj@microsoft.com>2016-09-23 07:32:31 +0300
commitf90b6a54113c45f55cfff1c0a754c458f6324ab2 (patch)
tree998575c89fd388533785fecd1a344089aab6d3a5 /dir.props
parent1ef561911eeabbee76e764946e40358fcd5ba144 (diff)
Add downlevel ValueTuple configuration
Diffstat (limited to 'dir.props')
-rw-r--r--dir.props22
1 files changed, 22 insertions, 0 deletions
diff --git a/dir.props b/dir.props
index eadc7ab28d..27c41c5eb6 100644
--- a/dir.props
+++ b/dir.props
@@ -456,6 +456,28 @@
<NuGetTargetMoniker>UAP,Version=v10.1</NuGetTargetMoniker>
</PropertyGroup>
</When>
+ <When Condition="'$(TargetGroup)'=='portable-net45+win8+sl5'">
+ <PropertyGroup>
+ <PackageTargetFramework>portable-net45+win8+sl5</PackageTargetFramework>
+ <NuGetTargetMoniker>.NETPortable,Version=v0.0,Profile=Profile47</NuGetTargetMoniker>
+ </PropertyGroup>
+ <ItemGroup>
+ <Compile Include="$(CommonPath)\System\Reflection\AssemblyMetadataAttribute.cs">
+ <Link>System\Reflection\AssemblyMetadataAttribute.cs</Link>
+ </Compile>
+ </ItemGroup>
+ </When>
+ <When Condition="'$(TargetGroup)'=='portable-net40+sl4+win8+wp8'">
+ <PropertyGroup>
+ <PackageTargetFramework>portable-net40+sl4+win8+wp8</PackageTargetFramework>
+ <NuGetTargetMoniker>.NETPortable,Version=v0.0,Profile=Profile36</NuGetTargetMoniker>
+ </PropertyGroup>
+ <ItemGroup>
+ <Compile Include="$(CommonPath)\System\Reflection\AssemblyMetadataAttribute.cs">
+ <Link>System\Reflection\AssemblyMetadataAttribute.cs</Link>
+ </Compile>
+ </ItemGroup>
+ </When>
<Otherwise>
<PropertyGroup>
<ConfigurationErrorMsg>$(ConfigurationErrorMsg);Unknown TargetGroup [$(TargetGroup)] specificed in your project.</ConfigurationErrorMsg>