You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

Tensorflow.Binding.csproj 3.5 kB

5 years ago
5 years ago
6 years ago
6 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFramework>netstandard2.0</TargetFramework>
  4. <AssemblyName>TensorFlow.NET</AssemblyName>
  5. <RootNamespace>Tensorflow</RootNamespace>
  6. <TargetTensorFlow>2.2.0</TargetTensorFlow>
  7. <Version>0.20.1</Version>
  8. <LangVersion>8.0</LangVersion>
  9. <Authors>Haiping Chen, Meinrad Recheis, Eli Belash</Authors>
  10. <Company>SciSharp STACK</Company>
  11. <GeneratePackageOnBuild>true</GeneratePackageOnBuild>
  12. <Copyright>Apache 2.0, Haiping Chen $([System.DateTime]::UtcNow.ToString(yyyy))</Copyright>
  13. <RepositoryUrl>https://github.com/SciSharp/TensorFlow.NET</RepositoryUrl>
  14. <RepositoryType>git</RepositoryType>
  15. <PackageProjectUrl>http://scisharpstack.org</PackageProjectUrl>
  16. <PackageIconUrl>https://avatars3.githubusercontent.com/u/44989469?s=200&amp;v=4</PackageIconUrl>
  17. <PackageTags>TensorFlow, NumSharp, SciSharp, MachineLearning, TensorFlow.NET, C#, TF.NET</PackageTags>
  18. <Description>Google's TensorFlow full binding in .NET Standard.
  19. Building, training and infering deep learning models.
  20. https://tensorflownet.readthedocs.io</Description>
  21. <AssemblyVersion>0.20.1.0</AssemblyVersion>
  22. <PackageReleaseNotes>tf.net 0.20.x and above are based on tensorflow native 2.x.
  23. * Eager Mode is added finally.
  24. * tf.keras is partially working.
  25. * tf.data is added.</PackageReleaseNotes>
  26. <FileVersion>0.20.1.0</FileVersion>
  27. <PackageLicenseFile>LICENSE</PackageLicenseFile>
  28. <PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
  29. <SignAssembly>false</SignAssembly>
  30. <AssemblyOriginatorKeyFile>Open.snk</AssemblyOriginatorKeyFile>
  31. <Platforms>AnyCPU;x64</Platforms>
  32. </PropertyGroup>
  33. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
  34. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  35. <DefineConstants>TRACE;DEBUG</DefineConstants>
  36. <PlatformTarget>AnyCPU</PlatformTarget>
  37. </PropertyGroup>
  38. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
  39. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  40. <DefineConstants>TRACE;DEBUG</DefineConstants>
  41. <PlatformTarget>x64</PlatformTarget>
  42. </PropertyGroup>
  43. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
  44. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  45. </PropertyGroup>
  46. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
  47. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  48. </PropertyGroup>
  49. <ItemGroup>
  50. <Compile Remove="Distribute\**" />
  51. <Compile Remove="Models\**" />
  52. <Compile Remove="runtimes\**" />
  53. <EmbeddedResource Remove="Distribute\**" />
  54. <EmbeddedResource Remove="Models\**" />
  55. <EmbeddedResource Remove="runtimes\**" />
  56. <None Remove="Distribute\**" />
  57. <None Remove="Models\**" />
  58. <None Remove="runtimes\**" />
  59. <Compile Remove="Util\BindingArray2.cs" />
  60. <None Include="..\..\LICENSE">
  61. <Pack>True</Pack>
  62. <PackagePath></PackagePath>
  63. </None>
  64. </ItemGroup>
  65. <ItemGroup>
  66. <None Remove="Protobuf\README.md" />
  67. </ItemGroup>
  68. <ItemGroup>
  69. <PackageReference Include="Google.Protobuf" Version="3.11.4" />
  70. <PackageReference Include="NumSharp.Lite" Version="0.1.8" />
  71. <PackageReference Include="Protobuf.Text" Version="0.4.0" />
  72. </ItemGroup>
  73. <ItemGroup>
  74. <Folder Include="Keras\Initializers\" />
  75. </ItemGroup>
  76. <ItemGroup>
  77. <None Update="FodyWeavers.xml">
  78. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  79. </None>
  80. </ItemGroup>
  81. </Project>