27 lines
1000 B
XML
27 lines
1000 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<Import Project="..\..\build\common.props" />
|
|
|
|
<PropertyGroup>
|
|
<IncludeBuildOutput>false</IncludeBuildOutput>
|
|
<TargetFramework>netcoreapp2.0</TargetFramework>
|
|
<PackageTags>aspnetcore</PackageTags>
|
|
<Description>Microsoft.AspNetCore.All</Description>
|
|
<EnableApiCheck>false</EnableApiCheck>
|
|
<AssetTargetFallback>$(AssetTargetFallback);portable-net45+win8+wp8+wpa81</AssetTargetFallback>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="@(FullMetaPackagePackageReference)" />
|
|
<PackageReference Include="@(FullMetaPackagePackageNoRuntimeStoreReference)" />
|
|
<ProjectReference Include="@(FullMetaPackageProjectReference)" PrivateAssets="None" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Content Include="build\**\*.xml" PackagePath="%(Identity)" />
|
|
<Content Include="build\**\*.targets" PackagePath="%(Identity)" />
|
|
<Content Include="lib\$(TargetFramework)\_._" PackagePath="%(Identity)" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|