-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbagend-ml.csproj
55 lines (52 loc) · 2.18 KB
/
bagend-ml.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
53
54
55
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net7.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<RootNamespace>bagend_ml</RootNamespace>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
</PropertyGroup>
<PropertyGroup Condition=" '$(RunConfiguration)' == 'https' " />
<PropertyGroup Condition=" '$(RunConfiguration)' == 'http' " />
<ItemGroup>
<PackageReference Include="Microsoft.VisualStudio.Azure.Containers.Tools.Targets" Version="1.17.0" />
<PackageReference Include="Microsoft.AspNetCore.OpenApi" Version="7.0.0" />
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.4.0" />
<PackageReference Include="Microsoft.ML.DataView" Version="2.0.0" />
<PackageReference Include="RestSharp" Version="108.0.3" />
<PackageReference Include="Microsoft.ML" Version="2.0.0" />
<PackageReference Include="Microsoft.ML.TimeSeries" Version="2.0.0" />
<PackageReference Include="Microsoft.ML.Mkl.Redist" Version="2.0.0" />
<PackageReference Include="Microsoft.ML.Mkl.Components" Version="2.0.0" />
<PackageReference Include="MKL.NET.linux-x64" Version="2022.0.1.117" />
</ItemGroup>
<ItemGroup>
<None Remove="ML\" />
<None Remove="ML\Training\" />
<None Remove="Microsoft.ML" />
<None Remove="Microsoft.ML.DataView" />
<None Remove="RestSharp" />
<None Remove="Config\" />
<None Remove="Microsoft.ML.TimeSeries" />
<None Remove="Util\" />
<None Remove="Controllers\" />
<None Remove="Models\" />
<None Remove="Models\ExternalEvents\" />
<None Remove="Microsoft.ML.Mkl.Redist" />
<None Remove="Microsoft.ML.Mkl.Components" />
<None Remove="MKL.NET.linux-x64" />
<None Remove="ML\MLModels\" />
<None Remove="ML\Predictions\" />
</ItemGroup>
<ItemGroup>
<Folder Include="ML\" />
<Folder Include="ML\Training\" />
<Folder Include="Config\" />
<Folder Include="Util\" />
<Folder Include="Controllers\" />
<Folder Include="Models\" />
<Folder Include="Models\ExternalEvents\" />
<Folder Include="ML\MLModels\" />
<Folder Include="ML\Predictions\" />
</ItemGroup>
</Project>