22 lines
979 B
XML
22 lines
979 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<IncludeBuildOutput>false</IncludeBuildOutput>
|
|
<IncludeSymbols>false</IncludeSymbols>
|
|
<TargetFramework>netcoreapp3.0</TargetFramework>
|
|
<PackageTags>aspnetcore</PackageTags>
|
|
<EnableApiCheck>false</EnableApiCheck>
|
|
<PackageDescription>Provides a default set of APIs for building an ASP.NET Core application, and also includes API for third-party integrations with ASP.NET Core.
|
|
|
|
This package requires the ASP.NET Core runtime. This runtime is installed by the .NET Core SDK, or can be acquired separately using installers available at https://aka.ms/dotnet-download.
|
|
</PackageDescription>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Content Include="build\$(TargetFramework)\*.props" PackagePath="%(Identity)" />
|
|
<Content Include="build\$(TargetFramework)\*.targets" PackagePath="%(Identity)" />
|
|
<Content Include="lib\$(TargetFramework)\_._" PackagePath="%(Identity)" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|