-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathRatingAPI.csproj
52 lines (45 loc) · 1.66 KB
/
RatingAPI.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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net9.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>
<ItemGroup>
<Compile Remove="beatleader-analyzer\**" />
<Compile Remove="beatleader-parser\**" />
<Content Remove="beatleader-analyzer\**" />
<Content Remove="beatleader-parser\**" />
<EmbeddedResource Remove="beatleader-analyzer\**" />
<EmbeddedResource Remove="beatleader-parser\**" />
<None Remove="beatleader-analyzer\**" />
<None Remove="beatleader-parser\**" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="MathNet.Numerics" Version="6.0.0-beta1" />
<PackageReference Include="Microsoft.ML.OnnxRuntime" Version="1.20.1" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="beatleader-analyzer\beatleader-analyzer\Analyzer.csproj" />
<ProjectReference Include="beatleader-parser\beatleader-parser\Parser.csproj" />
</ItemGroup>
<ItemGroup>
<Reference Include="Analyzer">
<HintPath>dll\Analyzer.dll</HintPath>
</Reference>
<Reference Include="NVorbis">
<HintPath>dll\NVorbis.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup>
<None Update="model_sleep_4LSTM_acc.onnx">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="model_sleep_4LSTM_speed.onnx">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="tagging_model.onnx">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>