-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathNeuralVision.csproj
More file actions
39 lines (34 loc) · 1.47 KB
/
NeuralVision.csproj
File metadata and controls
39 lines (34 loc) · 1.47 KB
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
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>netcoreapp3.1</TargetFramework>
<UseWPF>true</UseWPF>
</PropertyGroup>
<ItemGroup>
<None Remove="Resourses\applications-science_4986.ico" />
<None Remove="Resourses\emo.png" />
<None Remove="Resourses\MLModel1.zip" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.ML" Version="1.7.1" />
<PackageReference Include="Microsoft.ML.CpuMath" Version="1.7.1" />
<PackageReference Include="Microsoft.ML.DataView" Version="1.7.1" />
<PackageReference Include="Microsoft.ML.FastTree" Version="1.7.1" />
<PackageReference Include="Microsoft.ML.ImageAnalytics" Version="1.7.1" />
<PackageReference Include="Microsoft.ML.LightGbm" Version="1.7.1" />
<PackageReference Include="Microsoft.ML.OnnxTransformer" Version="1.7.1" />
<PackageReference Include="Microsoft.ML.Vision" Version="1.7.1" />
<PackageReference Include="SciSharp.TensorFlow.Redist" Version="2.3.1" />
</ItemGroup>
<ItemGroup>
<Resource Include="Resourses\applications-science_4986.ico">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Resource>
<Resource Include="Resourses\emo.png">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Resource>
<Resource Include="Resourses\MLModel1.zip">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Resource>
</ItemGroup>
</Project>