-
Notifications
You must be signed in to change notification settings - Fork 442
Expand file tree
/
Copy pathSqueezeNetObjectDetectionNET5.csproj
More file actions
45 lines (37 loc) · 1.4 KB
/
SqueezeNetObjectDetectionNET5.csproj
File metadata and controls
45 lines (37 loc) · 1.4 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
40
41
42
43
44
45
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net5.0-windows10.0.19041.0</TargetFramework>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<DefineConstants>TRACE</DefineConstants>
</PropertyGroup>
<PropertyGroup>
<DefineConstants>USE_WINML_NUGET</DefineConstants>
</PropertyGroup>
<ItemGroup>
<None Remove="Labels.json" />
<None Remove="..\..\..\SharedContent\models\SqueezeNet.onnx" />
<None Remove="..\..\..\SharedContent\media\kitten_224.png" />
</ItemGroup>
<ItemGroup>
<Content Include="Labels.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="..\..\..\SharedContent\models\SqueezeNet.onnx">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="..\..\..\SharedContent\media\kitten_224.png">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AI.MachineLearning" Version="1.7.0" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
</ItemGroup>
<ItemGroup>
<None Update="Labels.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>