Imported Upstream version 6.0.0.172

Former-commit-id: f3cc9b82f3e5bd8f0fd3ebc098f789556b44e9cd
This commit is contained in:
Xamarin Public Jenkins (auto-signing)
2019-04-12 14:10:50 +00:00
parent 8016999e4d
commit 64ac736ec5
32155 changed files with 3981439 additions and 75368 deletions

View File

@@ -3,7 +3,8 @@
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), dir.props))\dir.props" />
<PropertyGroup>
<PackageVersion>2.0.0</PackageVersion>
<HarvestStablePackage>false</HarvestStablePackage>
<PackageVersion>2.0.1</PackageVersion>
<ServiceModelVersion>4.4.1</ServiceModelVersion>
</PropertyGroup>
@@ -70,12 +71,22 @@
</ItemGroup>
<ItemGroup>
<Dependency Include="@(LibraryPackage)" />
<Dependency Include="@(PrereleaseLibraryPackage)" />
<!-- The shims included in the shims package are only needed for netcoreapp2.0 since in newer frameworks they are included inbox.
In order to condition the shims package to an specific framework other dependencies need to specify their target framework. So
we need to include the dependencies with the supported frameworks and then we include the compatibility shims package only for 2.0 -->
<Dependency Include="@(LibraryPackage);@(PrereleaseLibraryPackage)">
<TargetFramework>netcoreapp2.0</TargetFramework>
</Dependency>
<Dependency Include="@(LibraryPackage);@(PrereleaseLibraryPackage)">
<TargetFramework>netcoreapp2.1</TargetFramework>
</Dependency>
<Dependency Include="@(LibraryPackage);@(PrereleaseLibraryPackage)">
<TargetFramework>netstandard2.0</TargetFramework>
</Dependency>
<!-- Include dependency to shims package -->
<Dependency Include="Microsoft.Windows.Compatibility.Shims">
<Version>$(CompatibilityShimsPackageVersion)</Version>
<TargetFramework>netcoreapp2.0</TargetFramework>
</Dependency>
</ItemGroup>