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