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>
- <OutputType>Exe</OutputType>
- <TargetFramework>net6.0</TargetFramework>
- <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>
- </PropertyGroup>
-
- <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
- <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
- </PropertyGroup>
-
- <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
- <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
- </PropertyGroup>
-
- <ItemGroup>
- <Compile Remove="BenchmarkDotNet.Artifacts\**" />
- <EmbeddedResource Remove="BenchmarkDotNet.Artifacts\**" />
- <None Remove="BenchmarkDotNet.Artifacts\**" />
- </ItemGroup>
-
- <ItemGroup>
- <None Remove="tensorflow.dll" />
- </ItemGroup>
-
- <ItemGroup>
- <PackageReference Include="BenchmarkDotNet" Version="0.13.5" />
- <PackageReference Include="SciSharp.TensorFlow.Redist" Version="2.11.4" />
- </ItemGroup>
-
- <ItemGroup>
- <ProjectReference Include="..\..\src\TensorFlowNET.Keras\Tensorflow.Keras.csproj" />
- </ItemGroup>
-
- <ItemGroup>
- <Folder Include="Leak\TestModel\saved_model\assets\" />
- </ItemGroup>
-
- <ItemGroup>
- <None Update="Leak\TestModel\saved_model\saved_model.pb">
- <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
- </None>
- <None Update="Leak\TestModel\saved_model\variables\variables.data-00000-of-00001">
- <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
- </None>
- <None Update="Leak\TestModel\saved_model\variables\variables.index">
- <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
- </None>
- </ItemGroup>
-
- </Project>
|