23 lines
943 B
XML
23 lines
943 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<Import Project="..\..\build\common.props" />
|
|
|
|
<PropertyGroup>
|
|
<Description>Low-allocation Push-oriented WebSockets based on Channels</Description>
|
|
<VersionPrefix>0.1.0</VersionPrefix>
|
|
<TargetFramework>netstandard1.3</TargetFramework>
|
|
<NoWarn>$(NoWarn);CS1591</NoWarn>
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
<GenerateDocumentationFile>true</GenerateDocumentationFile>
|
|
<PackageTags>aspnetcore;signalr</PackageTags>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="System.ValueTuple" Version="$(CoreFxVersion)" />
|
|
<PackageReference Include="System.IO.Pipelines" Version="$(CoreFxLabsVersion)" />
|
|
<PackageReference Include="System.IO.Pipelines.Text.Primitives" Version="$(CoreFxLabsVersion)" />
|
|
<PackageReference Include="Microsoft.Extensions.TaskCache.Sources" Version="$(AspNetCoreVersion)" PrivateAssets="All" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|