-
Notifications
You must be signed in to change notification settings - Fork 2.7k
/
Copy pathObjectDetection.csproj
42 lines (36 loc) · 1.42 KB
/
ObjectDetection.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net6.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>
<ItemGroup>
<None Remove="assets\images\image1.jpg" />
<None Remove="assets\images\image2.jpg" />
<None Remove="assets\images\image3.jpg" />
<None Remove="assets\images\image4.jpg" />
</ItemGroup>
<ItemGroup>
<Content Include="assets\images\image1.jpg">
<CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
</Content>
<Content Include="assets\images\image2.jpg">
<CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
</Content>
<Content Include="assets\images\image3.jpg">
<CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
</Content>
<Content Include="assets\images\image4.jpg">
<CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
</Content>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.ML" Version="$(MicrosoftMLVersion)" />
<PackageReference Include="Microsoft.ML.ImageAnalytics" Version="$(MicrosoftMLVersion)" />
<PackageReference Include="Microsoft.ML.OnnxRuntime" Version="$(MicrosoftMLVersion)" />
<PackageReference Include="Microsoft.ML.OnnxTransformer" Version="$(MicrosoftMLVersion)" />
</ItemGroup>
<ItemGroup>
<Folder Include="assets\Model\" />
</ItemGroup>
</Project>