21 lines
760 B
XML
21 lines
760 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<Import Project="$(DotNetRestoreSourcePropsPath)" Condition="'$(DotNetRestoreSourcePropsPath)' != ''"/>
|
|
|
|
<PropertyGroup>
|
|
<IncludeBuildOutput>false</IncludeBuildOutput>
|
|
<IncludeSymbols>false</IncludeSymbols>
|
|
<TargetFramework>netcoreapp2.1</TargetFramework>
|
|
<PackageTags>aspnetcore</PackageTags>
|
|
<Description>Microsoft.AspNetCore.All</Description>
|
|
<EnableApiCheck>false</EnableApiCheck>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Content Include="build\$(TargetFramework)\*.props" PackagePath="%(Identity)" />
|
|
<Content Include="build\$(TargetFramework)\*.targets" PackagePath="%(Identity)" />
|
|
<Content Include="lib\$(TargetFramework)\_._" PackagePath="%(Identity)" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|