Console app for running the nesting engine from the command line. Supports plate size/spacing overrides, quantity limits, overlap checking with exit codes, and benchmark-friendly flags (--no-save, --no-log). The MCP test_engine tool shells out to this project. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
15 lines
589 B
XML
15 lines
589 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" />
|
|
</ItemGroup>
|
|
</Project>
|