-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathCustomVision-TensorFlow.csproj
More file actions
27 lines (27 loc) · 960 Bytes
/
CustomVision-TensorFlow.csproj
File metadata and controls
27 lines (27 loc) · 960 Bytes
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp2.0</TargetFramework>
<RuntimeIdentifiers>win-x64;ubuntu.16.04-x64</RuntimeIdentifiers>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<LangVersion>7.1</LangVersion>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<LangVersion>7.1</LangVersion>
</PropertyGroup>
<ItemGroup>
<None Remove="Assets\labels.txt" />
<None Remove="Assets\model.pb" />
<None Remove="Assets\test.jpg" />
</ItemGroup>
<ItemGroup>
<Content Include="Assets\labels.txt" />
<Content Include="Assets\model.pb" />
<Content Include="Assets\test.jpg" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="PowerArgs" Version="3.0.0" />
<PackageReference Include="TensorFlowSharp" Version="1.5.0" />
</ItemGroup>
</Project>