-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathws.fsproj
26 lines (23 loc) · 948 Bytes
/
ws.fsproj
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Authors>Namdak Tonpa;Igor Gorodetsky;Siegmentation Fault</Authors>
<Company>INFOTECH SE</Company>
<OutputType>Exe</OutputType>
<TargetFramework>net462</TargetFramework>
<UseAppHost>true</UseAppHost>
<Version>1.0.16</Version>
<IncludeSource>true</IncludeSource>
<PackageTags>WebSockets;Async;MailboxProcessor</PackageTags>
<PackageDescription>F# WebSocket Server</PackageDescription>
<RepositoryUrl>https://github.com/erpuno/ws</RepositoryUrl>
<Description>High-performance, idiomatic, zero-dependency, Async-based,
supervised WebSocket server with ticker timer.</Description>
</PropertyGroup>
<ItemGroup>
<Compile Include="src/types.fs" />
<Compile Include="src/2616.fs" />
<Compile Include="src/6455.fs" />
<Compile Include="src/server.fs" />
<Compile Include="src/program.fs" />
</ItemGroup>
</Project>