-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathServer.fsproj
More file actions
20 lines (20 loc) · 747 Bytes
/
Copy pathServer.fsproj
File metadata and controls
20 lines (20 loc) · 747 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp3.1</TargetFramework>
</PropertyGroup>
<ItemGroup>
<Compile Include="MessageTypes.fs"/>
<Compile Include="TwitterData.fs"/>
<Compile Include="ServerActor.fs"/>
<Compile Include="Server.fs"/>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Akka" Version="1.4.10"/>
<PackageReference Include="Akka.FSharp" Version="1.4.10"/>
<PackageReference Include="Suave" Version="2.6.0"/>
<PackageReference Include="FSharp.Core" Version="5.0.0"/>
<PackageReference Include="FSharp.Json" Version="0.4.0"/>
<PackageReference Include="Newtonsoft.Json" Version="12.0.3"/>
</ItemGroup>
</Project>