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>2017-04-14 22:55:35 +0300
committerEric St. John <ericstj@microsoft.com>2017-04-18 23:28:50 +0300
commit72002dbb7e3e657adaeb002feca0399d9667a54b (patch)
treed4470d1d8dbcb42b88e2ef22fc8e77b776a1388d /external
parentec4d6f868eb6497216791fc158173e7123d6e73f (diff)
Re-enable package validation and clean up package content
Diffstat (limited to 'external')
-rw-r--r--external/netstandard/netstandard.depproj9
1 files changed, 8 insertions, 1 deletions
diff --git a/external/netstandard/netstandard.depproj b/external/netstandard/netstandard.depproj
index 00b0561c62..3ac6c5e21d 100644
--- a/external/netstandard/netstandard.depproj
+++ b/external/netstandard/netstandard.depproj
@@ -2,7 +2,8 @@
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" DefaultTargets="Build">
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), dir.props))\dir.props" />
<PropertyGroup>
- <IsNETStandard1x Condition="$(NuGetTargetMoniker.StartsWith('.NETStandard,Version=v1.'))">true</IsNETStandard1x>
+ <NETStandardVersion Condition="$(NuGetTargetMoniker.StartsWith('.NETStandard,Version=v'))">$(NuGetTargetMoniker.SubString(22))</NETStandardVersion>
+ <IsNETStandard1x Condition="$(NETStandardVersion.StartsWith('1.'))">true</IsNETStandard1x>
<BinPlaceRef>true</BinPlaceRef>
<NuGetDeploySourceItem>Reference</NuGetDeploySourceItem>
<NugetRuntimeIdentifier>None</NugetRuntimeIdentifier>
@@ -28,6 +29,12 @@
<PackageReference Include="System.Runtime.Serialization.Primitives">
<Version>4.3.0</Version>
</PackageReference>
+ <PackageReference Condition="'$(NETStandardVersion)' &gt;= 1.3" Include="System.Reflection.TypeExtensions">
+ <Version>4.3.0</Version>
+ </PackageReference>
+ <PackageReference Condition="'$(NETStandardVersion)' &gt;= 1.2" Include="System.Data.SqlClient">
+ <Version>4.3.0</Version>
+ </PackageReference>
</ItemGroup>
<ItemGroup>