-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMinomuncher.csproj
37 lines (37 loc) · 1.49 KB
/
Minomuncher.csproj
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
34
35
36
37
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net7.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<ServerGarbageCollection>true</ServerGarbageCollection>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Discord.Net" Version="3.14.1" />
<PackageReference Include="DotNetEnv" Version="3.0.0" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="8.0.0" />
<PackageReference Include="Microsoft.ML" Version="2.0.0" />
<PackageReference Include="Microsoft.ML.FastTree" Version="2.0.0" />
<PackageReference Include="Microsoft.ML.LightGbm" Version="2.0.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\TetrioVirtualEnvironment\Munch\Munch.csproj" />
<ProjectReference Include="..\TetrioVirtualEnvironment\TetrEnvironment\TetrEnvironment.csproj" />
<ProjectReference Include="..\TetrLoader\TetrLoader\TetrLoader.csproj" />
</ItemGroup>
<ItemGroup>
<None Update=".env">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
<ItemGroup Label="GlickoEstimator">
<None Include="GlickoEstimator.mlnet">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
<ItemGroup Label="TREstimator">
<None Include="TREstimator.mlnet">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>