26 lines
1.4 KiB
XML
26 lines
1.4 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<AssemblyName>Microsoft.AspNetCore.Protocols.Abstractions</AssemblyName>
|
|
<RootNamespace>Microsoft.AspNetCore.Protocols.Abstractions</RootNamespace>
|
|
<Description>Core components of ASP.NET Core networking protocol stack.</Description>
|
|
<TargetFramework>netstandard2.0</TargetFramework>
|
|
<GenerateDocumentationFile>true</GenerateDocumentationFile>
|
|
<PackageTags>aspnetcore</PackageTags>
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
<NoWarn>CS1591;$(NoWarn)</NoWarn>
|
|
<EnableApiCheck>false</EnableApiCheck>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.AspNetCore.Http.Features" Version="$(MicrosoftAspNetCoreHttpFeaturesPackageVersion)" />
|
|
<PackageReference Include="System.Numerics.Vectors" Version="$(SystemNumericsVectorsPackageVersion)" />
|
|
<PackageReference Include="System.Buffers" Version="$(SystemBuffersPackageVersion)" />
|
|
<PackageReference Include="System.IO.Pipelines" Version="$(SystemIOPipelinesPackageVersion)" />
|
|
<PackageReference Include="System.Text.Encodings.Web.Utf8" Version="$(SystemTextEncodingsWebUtf8PackageVersion)" />
|
|
<PackageReference Include="System.Memory" Version="$(SystemMemoryPackageVersion)" />
|
|
<PackageReference Include="System.Runtime.CompilerServices.Unsafe" Version="$(SystemRuntimeCompilerServicesUnsafePackageVersion)" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|