|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- <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.0" />
- </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>
|