-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathWebSocketExtensions.csproj
More file actions
28 lines (24 loc) · 1.36 KB
/
WebSocketExtensions.csproj
File metadata and controls
28 lines (24 loc) · 1.36 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>netstandard2.0;net472;net48</TargetFrameworks>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<Description>A WebSocketClient and WebSocketServer wrapper for WebSocket Api In System.Net, A drop in replacement for WebSocketSharp, Has implementations using HttpListener as well as WebListener</Description>
<Authors>Max Fridberg</Authors>
<Company />
<PackageLicenseUrl>https://opensource.org/licenses/MIT</PackageLicenseUrl>
<PackageTags>WebSocket System.Net</PackageTags>
<PackageProjectUrl>https://github.com/maxfridbe/websocketextensions</PackageProjectUrl>
<PackageIconUrl>https://raw.githubusercontent.com/maxfridbe/websocketextensions/master/websocket.png</PackageIconUrl>
<RepositoryUrl>https://github.com/maxfridbe/websocketextensions</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageReleaseNotes>Feel free to contribute, Integration Tests Work but no other gaurentees.</PackageReleaseNotes>
<Version>2.1.7.0</Version>
<AssemblyVersion>2.1.7.0</AssemblyVersion>
<FileVersion>2.1.7.0</FileVersion>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Net.Http.Server" Version="1.1.4" />
</ItemGroup>
</Project>