-
-
Notifications
You must be signed in to change notification settings - Fork 43
Expand file tree
/
Copy pathGenHTTP.Modules.Websockets.csproj
More file actions
33 lines (20 loc) · 1011 Bytes
/
GenHTTP.Modules.Websockets.csproj
File metadata and controls
33 lines (20 loc) · 1011 Bytes
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
29
30
31
32
33
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Description>Allows to handle websocket connection to a GenHTTP server</Description>
<Authors>Diogo Martins, Andreas Nägeli, Magnus Johnsson</Authors>
<PackageTags>GenHTTP HTTP Webserver C# Module Websockets</PackageTags>
<PackageReadmeFile>README.md</PackageReadmeFile>
<!-- remove this line after Fleck has been removed -->
<NoWarn>CS1591,CS1587,CS1572,CS1573,CS0612,CS0618</NoWarn>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="System.IO.Pipelines" Version="10.0.7" />
<ProjectReference Include="..\..\API\GenHTTP.Api.csproj"/>
<!-- remove together with fleck -->
<ProjectReference Include="..\..\Engine\Shared\GenHTTP.Engine.Shared.csproj" />
<PackageReference Include="Fleck" Version="1.2.0" />
</ItemGroup>
<ItemGroup>
<None Include="README.md" Pack="true" PackagePath="" />
</ItemGroup>
</Project>