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>net6.0</TargetFramework>
- <IsPackable>false</IsPackable>
- <SignAssembly>false</SignAssembly>
- <DelaySign>false</DelaySign>
- <AssemblyOriginatorKeyFile>Open.snk</AssemblyOriginatorKeyFile>
- <LangVersion>10.0</LangVersion>
- <Platforms>AnyCPU;x64</Platforms>
- </PropertyGroup>
-
- <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
- <DefineConstants>DEBUG;TRACE</DefineConstants>
- <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
- <PlatformTarget>x64</PlatformTarget>
- </PropertyGroup>
-
- <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
- <DefineConstants>DEBUG;TRACE</DefineConstants>
- <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
- <PlatformTarget>x64</PlatformTarget>
- </PropertyGroup>
-
- <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
- <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
- <PlatformTarget>x64</PlatformTarget>
- </PropertyGroup>
-
- <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
- <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
- </PropertyGroup>
-
- <ItemGroup>
- <Compile Remove="KerasTests.cs" />
- </ItemGroup>
-
- <ItemGroup>
- <None Remove="ManagedAPI\nn_test.py" />
- </ItemGroup>
-
- <ItemGroup>
- <PackageReference Include="FluentAssertions" Version="5.10.3" />
- <PackageReference Include="MethodBoundaryAspect.Fody" Version="2.0.149" />
- <PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.6.3" />
- <PackageReference Include="MSTest.TestAdapter" Version="2.2.10" />
- <PackageReference Include="MSTest.TestFramework" Version="2.2.10" />
- </ItemGroup>
-
- <ItemGroup>
- <ProjectReference Include="..\..\src\TensorFlowNET.Core\Tensorflow.Binding.csproj" />
- <ProjectReference Include="..\..\src\TensorFlowNET.Text\Tensorflow.Text.csproj" />
- <ProjectReference Include="..\..\tools\Tensorflow.UnitTest.RedistHolder\Tensorflow.UnitTest.RedistHolder.csproj" />
- <ProjectReference Include="..\Tensorflow.UnitTest\Tensorflow.UnitTest.csproj" />
- </ItemGroup>
-
- <ItemGroup>
- <None Update="model\saved_model.pb">
- <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
- </None>
- <None Update="Utilities\models\example1\saved_model.pb">
- <CopyToOutputDirectory>Always</CopyToOutputDirectory>
- </None>
- </ItemGroup>
-
- </Project>
|