Wire up GpuEvaluatorFactory in the Console app the same way the GUI app does, so BestFitCache uses GPU-accelerated slide computation when a CUDA/OpenCL device is detected. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
19 lines
763 B
XML
19 lines
763 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>net8.0-windows</TargetFramework>
|
|
<RootNamespace>OpenNest.Console</RootNamespace>
|
|
<AssemblyName>OpenNest.Console</AssemblyName>
|
|
<DefineConstants>$(DefineConstants);DEBUG;TRACE</DefineConstants>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\OpenNest.Core\OpenNest.Core.csproj" />
|
|
<ProjectReference Include="..\OpenNest.Engine\OpenNest.Engine.csproj" />
|
|
<ProjectReference Include="..\OpenNest.IO\OpenNest.IO.csproj" />
|
|
<ProjectReference Include="..\OpenNest.Gpu\OpenNest.Gpu.csproj" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.Data.Sqlite" Version="10.0.5" />
|
|
</ItemGroup>
|
|
</Project>
|