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.7 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
12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  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.31.2</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.31.2.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.
  26. * autograph works partially.
  27. TensorFlow .NET v0.30 is focused on making more Keras API work including:
  28. * tf.keras.datasets
  29. * Building keras model in subclass, functional and sequential api</PackageReleaseNotes>
  30. <FileVersion>0.31.2.0</FileVersion>
  31. <PackageLicenseFile>LICENSE</PackageLicenseFile>
  32. <PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
  33. <SignAssembly>true</SignAssembly>
  34. <AssemblyOriginatorKeyFile>Open.snk</AssemblyOriginatorKeyFile>
  35. <Platforms>AnyCPU;x64</Platforms>
  36. </PropertyGroup>
  37. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
  38. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  39. <DefineConstants>TRACE;DEBUG</DefineConstants>
  40. <PlatformTarget>AnyCPU</PlatformTarget>
  41. </PropertyGroup>
  42. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
  43. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  44. <DefineConstants>TRACE;DEBUG</DefineConstants>
  45. <PlatformTarget>x64</PlatformTarget>
  46. </PropertyGroup>
  47. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
  48. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  49. </PropertyGroup>
  50. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
  51. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  52. </PropertyGroup>
  53. <ItemGroup>
  54. <Compile Remove="Distribute\**" />
  55. <Compile Remove="Models\**" />
  56. <Compile Remove="runtimes\**" />
  57. <EmbeddedResource Remove="Distribute\**" />
  58. <EmbeddedResource Remove="Models\**" />
  59. <EmbeddedResource Remove="runtimes\**" />
  60. <None Remove="Distribute\**" />
  61. <None Remove="Models\**" />
  62. <None Remove="runtimes\**" />
  63. <Compile Remove="Util\BindingArray2.cs" />
  64. <None Include="..\..\LICENSE">
  65. <Pack>True</Pack>
  66. <PackagePath></PackagePath>
  67. </None>
  68. </ItemGroup>
  69. <ItemGroup>
  70. <None Remove="FodyWeavers.xml" />
  71. <None Remove="FodyWeavers.xsd" />
  72. <None Remove="Protobuf\README.md" />
  73. </ItemGroup>
  74. <ItemGroup>
  75. <PackageReference Include="Google.Protobuf" Version="3.11.4" />
  76. <PackageReference Include="MethodBoundaryAspect.Fody" Version="2.0.138" />
  77. <PackageReference Include="NumSharp.Lite" Version="0.1.9" />
  78. <PackageReference Include="Protobuf.Text" Version="0.4.0" />
  79. <PackageReference Include="Serilog.Sinks.Console" Version="3.1.1" />
  80. </ItemGroup>
  81. </Project>