forked from migueldeicaza/TensorFlowSharp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTensorFlowSharp.csproj
More file actions
87 lines (86 loc) · 3.88 KB
/
TensorFlowSharp.csproj
File metadata and controls
87 lines (86 loc) · 3.88 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{0264C321-34F4-46AF-819E-168D1E597232}</ProjectGuid>
<OutputType>Library</OutputType>
<RootNamespace>TensorFlowSharp</RootNamespace>
<AssemblyName>TensorFlowSharp</AssemblyName>
<TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion>
<ReleaseVersion>0.2</ReleaseVersion>
<PackageId>TensorFlowSharp</PackageId>
<PackageVersion>1.4.0</PackageVersion>
<Authors>Miguel de Icaza</Authors>
<PackageLicenseUrl>https://github.com/migueldeicaza/TensorFlowSharp/blob/master/LICENSE</PackageLicenseUrl>
<PackageProjectUrl>https://github.com/migueldeicaza/TensorFlowSharp/</PackageProjectUrl>
<PackageTags>machine-learning, tensorflow, xamarin, c#, f#</PackageTags>
<Description>.NET Bindings for TensorFlow</Description>
<Owners>Miguel de Icaza</Owners>
<Summary>.NET API for TensorFlow, Google's Machine Intelligence framework</Summary>
<PackageReleaseNotes>Adds support for TensorFlor 1.4
This brings support for the TensorFlow 1.4 API.</PackageReleaseNotes>
</PropertyGroup>
<ItemGroup>
<_NativeFiles Include="..\native\*.*">
<InProject>false</InProject>
</_NativeFiles>
<PackageFile Include="@(_NativeFiles)">
<Kind>None</Kind>
<PackagePath>native\%(Filename)%(Extension)</PackagePath>
</PackageFile>
<PackageFile Include="TensorFlowSharp.targets">
<PackagePath>build\TensorFlowSharp.targets</PackagePath>
</PackageFile>
</ItemGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug</OutputPath>
<DefineConstants>DEBUG</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<DocumentationFile>bin\Debug\TensorFlowSharp.xml</DocumentationFile>
<ConsolePause>false</ConsolePause>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<PlatformTarget>x64</PlatformTarget>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<Optimize>true</Optimize>
<OutputPath>bin\Release</OutputPath>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<ConsolePause>false</ConsolePause>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<PlatformTarget>x64</PlatformTarget>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Numerics" />
<Reference Include="System.ValueTuple">
<HintPath>..\packages\System.ValueTuple.4.3.1\lib\netstandard1.0\System.ValueTuple.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup>
<Compile Include="Queue.cs" />
<Compile Include="Tensorflow.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="Operations.g.cs" />
<Compile Include="OperationsExtras.cs" />
<Compile Include="Buffer.cs" />
<Compile Include="Tensor.cs" />
<Compile Include="Variable.cs" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="NuGet.Build.Packaging">
<Version>*</Version>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="System.ValueTuple">
<Version>4.3.1</Version>
</PackageReference>
</ItemGroup>
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
</Project>