forked from PySymGym/VSharp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathVSharp.ML.GameServer.Runner.fsproj
More file actions
29 lines (24 loc) · 1017 Bytes
/
VSharp.ML.GameServer.Runner.fsproj
File metadata and controls
29 lines (24 loc) · 1017 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<RootNamespace>VSharp.ML.GameServer</RootNamespace>
</PropertyGroup>
<ItemGroup>
<Compile Include="Main.fs" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="FSharp.SystemTextJson" Version="1.1.23" />
<PackageReference Include="Suave" Version="2.6.2" />
<PackageReference Update="FSharp.Core" Version="7.0.0" />
<PackageReference Include="Argu" Version="6.1.1">
<GeneratePathProperty></GeneratePathProperty>
</PackageReference>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\VSharp.API\VSharp.API.csproj" />
<ProjectReference Include="..\VSharp.ML.GameServer\VSharp.ML.GameServer.fsproj" />
<ProjectReference Include="..\VSharp.Runner\VSharp.Runner.csproj" />
<ProjectReference Include="..\VSharp.Test\VSharp.Test.csproj" />
</ItemGroup>
</Project>