2018-01-29 19:03:06 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
|
|
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), dir.props))\dir.props" />
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
<PackageVersion>$(CompatibilityShimsPackageVersion)</PackageVersion>
|
2019-04-12 14:10:50 +00:00
|
|
|
<SkipPackageFileCheck>true</SkipPackageFileCheck>
|
|
|
|
<SkipValidatePackage>true</SkipValidatePackage>
|
|
|
|
<OmitDependencies>true</OmitDependencies>
|
|
|
|
<HarvestStablePackage>false</HarvestStablePackage>
|
2018-01-29 19:03:06 +00:00
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
2019-04-12 14:10:50 +00:00
|
|
|
<!-- We include placeholder files so that it is installable but takes the inbox shims in netcoreapp2.1 -->
|
|
|
|
<File Include="$(PlaceHolderFile)">
|
|
|
|
<TargetPath>/lib/netcoreapp2.1</TargetPath>
|
|
|
|
</File>
|
2018-01-29 19:03:06 +00:00
|
|
|
|
2019-04-12 14:10:50 +00:00
|
|
|
<File Include="$(PlaceHolderFile)">
|
|
|
|
<TargetPath>/ref/netcoreapp2.1</TargetPath>
|
|
|
|
</File>
|
2018-01-29 19:03:06 +00:00
|
|
|
|
2019-04-12 14:10:50 +00:00
|
|
|
<ProjectReference Include="..\..\src\shims\**\*.*proj"
|
|
|
|
Exclude="..\..\src\shims\ApiCompat.proj" />
|
|
|
|
</ItemGroup>
|
2018-01-29 19:03:06 +00:00
|
|
|
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), dir.targets))\dir.targets" />
|
|
|
|
</Project>
|