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.
|
- <Project Sdk="Microsoft.NET.Sdk">
-
- <PropertyGroup>
- <TargetFramework>netstandard2.0</TargetFramework>
- <RuntimeIdentifier>win-x64</RuntimeIdentifier>
- <AssemblyName>SciSharp.Tensorflow-Cpu.Redist</AssemblyName>
-
- <PackageId>runtime.win-x64.SciSharp.Tensorflow-Cpu.Redist</PackageId>
- <Version>1.0.0</Version>
- <Authors>SciSharp team</Authors>
- <Company>SciSharp STACK</Company>
- <RepositoryUrl>https://github.com/SciSharp/TensorFlow.NET</RepositoryUrl>
- <RepositoryType>git</RepositoryType>
- <Description>
- Distribution of the windows GPU Tensoflow library.
- The libraries can be directly downloaded from https://storage.googleapis.com/tensorflow/libtensorflow/
- </Description>
- <PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
-
- <PackageProjectUrl>https://github.com/SciSharp/TensorFlow.NET</PackageProjectUrl>
- <PackageTags>native;tensorflow;machine-learning;ML</PackageTags>
- <PackageOutputPath>../../packages</PackageOutputPath>
- <GeneratePackageOnBuild>false</GeneratePackageOnBuild>
-
- <EnableDefaultCompileItems>false</EnableDefaultCompileItems>
- <ProduceReferenceAssembly>false</ProduceReferenceAssembly>
- <IncludeBuildOutput>false</IncludeBuildOutput>
- </PropertyGroup>
-
- <ItemGroup>
- <!-- All dlls will be dropped in a folder available through DllImport.-->
- <Content Include="*.dll">
- <PackagePath>runtimes/$(RuntimeIdentifier)/native/%(Filename)%(Extension)</PackagePath>
- <Pack>true</Pack>
- <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
- </Content>
- </ItemGroup>
-
- </Project>
|