forked from dotnet/machinelearning-samples
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathOnnxObjectDetectionApp.vbproj
More file actions
20 lines (18 loc) · 865 Bytes
/
OnnxObjectDetectionApp.vbproj
File metadata and controls
20 lines (18 loc) · 865 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>netcoreapp3.0</TargetFramework>
<UseWPF>true</UseWPF>
<RootNamespace>OnnxObjectDetectionApp</RootNamespace>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.ML" Version="$(MicrosoftMLVersion)" />
<PackageReference Include="Microsoft.ML.ImageAnalytics" Version="$(MicrosoftMLVersion)" />
<PackageReference Include="Microsoft.ML.OnnxTransformer" Version="$(MicrosoftMLVersion)" />
<PackageReference Include="Microsoft.Windows.Compatibility" Version="3.0.0-rc1.19456.4" />
<PackageReference Include="OpenCvSharp3-AnyCPU" Version="4.0.0.20181129" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\OnnxObjectDetection\OnnxObjectDetection.vbproj" />
</ItemGroup>
</Project>