Skip to content

Commit 2d435ff

Browse files
committed
Adding nuspec for AspNetCore.RawSocket
1 parent 4708456 commit 2d435ff

File tree

3 files changed

+32
-2
lines changed

3 files changed

+32
-2
lines changed
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<package xmlns="http://schemas.microsoft.com/packaging/2012/06/nuspec.xsd">
3+
<metadata>
4+
<id>WampSharp.AspNetCore.RawSocket</id>
5+
<version>$version$</version>
6+
<title>WampSharp ASP.NET Core RawSocket support</title>
7+
<authors>CodeSharp</authors>
8+
<projectUrl>https://github.com/Code-Sharp/WampSharp/</projectUrl>
9+
<requireLicenseAcceptance>false</requireLicenseAcceptance>
10+
<description>WampSharp ASP.NET WebSockets support</description>
11+
<tags>websockets,wampws,rpc,pubsub,wampv1,wampv2,aspnet</tags>
12+
<dependencies>
13+
<group targetFramework=".NETStandard2.0">
14+
<dependency id="Microsoft.AspNetCore.Connections.Abstractions" version="[2.1.0, )" />
15+
<dependency id="System.Buffers" version="[4.5.0, )" />
16+
<dependency id="WampSharp" version="[$version$]" />
17+
<dependency id="WampSharp.RawSocket" version="[$version$]" />
18+
</group>
19+
</dependencies>
20+
</metadata>
21+
<files>
22+
<file src="$bin$\netstandard2.0\WampSharp.AspNetCore.RawSocket.dll" target="lib\netstandard2.0\WampSharp.AspNetCore.RawSocket.dll" />
23+
<file src="$bin$\netstandard2.0\WampSharp.AspNetCore.RawSocket.pdb" target="lib\netstandard2.0\WampSharp.AspNetCore.RawSocket.pdb" />
24+
</files>
25+
</package>

NuGet/WampSharp.AspNetCore.WebSockets.Server.nuspec

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,11 @@
1515
<dependency id="WampSharp" version="[$version$]" />
1616
<dependency id="WampSharp.WebSockets" version="[$version$]" />
1717
</group>
18+
<group targetFramework=".NETStandard2.0">
19+
<dependency id="Microsoft.AspNetCore.WebSockets" version="[1.0.2, )" />
20+
<dependency id="WampSharp" version="[$version$]" />
21+
<dependency id="WampSharp.WebSockets" version="[$version$]" />
22+
</group>
1823
</dependencies>
1924
</metadata>
2025
<files>

src/netstandard2.0/Extensions/WampSharp.AspNetCore.RawSocket/WampSharp.AspNetCore.RawSocket.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@
1717
</PropertyGroup>
1818

1919
<ItemGroup>
20-
<PackageReference Include="Microsoft.AspNetCore.Connections.Abstractions" Version="2.1.0-rc1-final" />
21-
<PackageReference Include="System.Buffers" Version="4.4.0" />
20+
<PackageReference Include="Microsoft.AspNetCore.Connections.Abstractions" Version="2.1.0" />
21+
<PackageReference Include="System.Buffers" Version="4.5.0" />
2222
</ItemGroup>
2323

2424
<ItemGroup>

0 commit comments

Comments
 (0)