forked from dotnet/machinelearning-samples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
OnnxObjectDetectionWeb.csproj
52 lines (43 loc) · 1.73 KB
/
OnnxObjectDetectionWeb.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
43
44
45
46
47
48
49
50
51
52
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>netcoreapp3.0</TargetFramework>
<UserSecretsId>07b5f177-2aea-4405-8e78-4121f2a881ff</UserSecretsId>
</PropertyGroup>
<ItemGroup>
<Compile Remove="MLModel\**" />
<Content Remove="MLModel\**" />
<EmbeddedResource Remove="MLModel\**" />
<None Remove="MLModel\**" />
</ItemGroup>
<ItemGroup>
<Content Include="Assets\imagesList\image2.jpg">
<CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
</Content>
<Content Include="Assets\imagesList\image4.jpg">
<CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
</Content>
<Content Include="Assets\imagesList\image1.jpg">
<CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
</Content>
<Content Include="Assets\imagesList\image3.jpg">
<CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
</Content>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.ML" Version="$(MicrosoftMLVersion)" />
<PackageReference Include="Microsoft.ML.ImageAnalytics" Version="$(MicrosoftMLVersion)" />
<PackageReference Include="Microsoft.ML.OnnxTransformer" Version="$(MicrosoftMLVersion)" />
<PackageReference Include="Microsoft.Extensions.ML" Version="$(MicrosoftMLPreviewVersion)" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\OnnxObjectDetection\OnnxObjectDetection.csproj" />
</ItemGroup>
<ItemGroup>
<None Update="ML\MLNETModel\Readme.txt">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="ImagesTemp\Readme.txt">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>