|
123456789101112131415161718192021222324252627282930313233 |
- <Project Sdk="Microsoft.NET.Sdk">
-
- <PropertyGroup>
- <TargetFramework>netcoreapp2.2</TargetFramework>
-
- <IsPackable>false</IsPackable>
- </PropertyGroup>
-
- <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
- <DefineConstants>DEBUG;TRACE</DefineConstants>
- <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
- </PropertyGroup>
-
- <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
- <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
- </PropertyGroup>
-
- <ItemGroup>
- <PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.2.0" />
- <PackageReference Include="MSTest.TestAdapter" Version="1.4.0" />
- <PackageReference Include="MSTest.TestFramework" Version="1.4.0" />
- <PackageReference Include="SciSharp.TensorFlow.Redist" Version="1.14.0" />
- </ItemGroup>
-
- <ItemGroup>
- <ProjectReference Include="..\..\src\KerasNET.Core\Keras.Core.csproj" />
- <ProjectReference Include="..\..\src\TensorFlowHub\TensorFlowHub.csproj" />
- <ProjectReference Include="..\..\src\TensorFlowNET.Core\TensorFlowNET.Core.csproj" />
- <ProjectReference Include="..\..\src\TensorFlowText\TensorFlowText.csproj" />
- <ProjectReference Include="..\TensorFlowNET.Examples\TensorFlowNET.Examples.csproj" />
- </ItemGroup>
-
- </Project>
|