26 lines
1.3 KiB
XML
26 lines
1.3 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<Import Project="..\..\build\common.props" />
|
|
|
|
<PropertyGroup>
|
|
<Description>Components for providing real-time bi-directional communication across the Web.</Description>
|
|
<VersionPrefix>0.1.0</VersionPrefix>
|
|
<TargetFramework>netstandard1.3</TargetFramework>
|
|
<NoWarn>$(NoWarn);CS1591</NoWarn>
|
|
<GenerateDocumentationFile>true</GenerateDocumentationFile>
|
|
<PackageTags>aspnetcore;signalr</PackageTags>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Microsoft.AspNetCore.Sockets.Common\Microsoft.AspNetCore.Sockets.Common.csproj" />
|
|
<ProjectReference Include="..\Microsoft.AspNetCore.WebSockets.Internal\Microsoft.AspNetCore.WebSockets.Internal.csproj" />
|
|
<PackageReference Include="Microsoft.AspNetCore.Hosting.Abstractions" Version="1.2.0-*" />
|
|
<PackageReference Include="Microsoft.AspNetCore.Routing" Version="1.2.0-*" />
|
|
<PackageReference Include="Microsoft.Extensions.TaskCache.Sources" Version="1.2.0-*" PrivateAssets="All"/>
|
|
<PackageReference Include="System.Reflection.TypeExtensions" Version="$(CoreFxVersion)" />
|
|
<PackageReference Include="System.Security.Claims" Version="$(CoreFxVersion)" />
|
|
<PackageReference Include="System.Threading.Tasks.Channels" Version="$(CoreFxLabsVersion)" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|