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>net5.0</TargetFramework>
-
- <IsPackable>false</IsPackable>
-
- <Platforms>AnyCPU;x64</Platforms>
- </PropertyGroup>
-
- <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
- <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
- <DefineConstants>DEBUG;TRACE</DefineConstants>
- <PlatformTarget>x64</PlatformTarget>
- </PropertyGroup>
-
- <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
- <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
- <DefineConstants>DEBUG;TRACE</DefineConstants>
- <PlatformTarget>x64</PlatformTarget>
- </PropertyGroup>
-
- <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
- <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
- </PropertyGroup>
-
- <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
- <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
- </PropertyGroup>
-
- <ItemGroup>
- <None Remove="Lite\testdata\add.bin" />
- <None Remove="Lite\testdata\add_quantized.bin" />
- </ItemGroup>
-
- <ItemGroup>
- <Content Include="Lite\testdata\add.bin">
- <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
- </Content>
- <Content Include="Lite\testdata\add_quantized.bin">
- <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
- </Content>
- </ItemGroup>
-
- <ItemGroup>
- <PackageReference Include="FluentAssertions" Version="5.10.3" />
- <PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.0.0" />
- <PackageReference Include="MSTest.TestAdapter" Version="2.2.7" />
- <PackageReference Include="MSTest.TestFramework" Version="2.2.7" />
- <PackageReference Include="coverlet.collector" Version="3.1.0">
- <PrivateAssets>all</PrivateAssets>
- <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
- </PackageReference>
- <PackageReference Include="SciSharp.TensorFlow.Redist" Version="2.6.0" />
- <PackageReference Include="SciSharp.TensorFlow.Redist-Lite" Version="2.6.0" />
- </ItemGroup>
-
- <ItemGroup>
- <ProjectReference Include="..\..\src\TensorFlowNET.Core\Tensorflow.Binding.csproj" />
- </ItemGroup>
-
- </Project>
|