-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathJadeML.csproj
40 lines (35 loc) · 1.55 KB
/
JadeML.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net8.0-windows8.0</TargetFramework>
<Nullable>enable</Nullable>
<UseWindowsForms>true</UseWindowsForms>
<ImplicitUsings>enable</ImplicitUsings>
<Platforms>AnyCPU;x64</Platforms>
<ApplicationIcon>Icon.ico</ApplicationIcon>
<Title>JadeML</Title>
<Authors>Dat Nguyen</Authors>
<Description>A GUI software for simple supervised machine learning (ML) tasks in Windows.</Description>
<Copyright>©Dat Nguyen Group</Copyright>
<RepositoryUrl>https://github.com/phatdatnguyen/JadeML</RepositoryUrl>
<Version>2.0.0</Version>
</PropertyGroup>
<ItemGroup>
<Content Include="Icon.ico" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Accord" Version="3.8.2-alpha" />
<PackageReference Include="Accord.IO" Version="3.8.2-alpha" />
<PackageReference Include="Accord.MachineLearning" Version="3.8.2-alpha" />
<PackageReference Include="Accord.MachineLearning.GPL" Version="3.8.2-alpha" />
<PackageReference Include="Accord.Math" Version="3.8.2-alpha" />
<PackageReference Include="Accord.Statistics" Version="3.8.2-alpha" />
<PackageReference Include="MathNet.Numerics" Version="6.0.0-beta1" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
<PackageReference Include="OxyPlot.WindowsForms" Version="2.2.0" />
<PackageReference Include="TorchSharp-cuda-windows" Version="0.103.0" />
</ItemGroup>
<ItemGroup>
<Folder Include="Images\" />
</ItemGroup>
</Project>