refactor: move ProgramVariableManager to Core, add config file support

- Move ProgramVariable and ProgramVariableManager from
  OpenNest.Posts.Cincinnati to OpenNest.Core/CNC (namespace OpenNest.CNC)
  so they can be used internally in nest programs
- Add parameterless constructor to CincinnatiPostProcessor that loads
  config from a .json file next to the DLL (creates defaults on first run)
- Enums serialize as readable strings (e.g., "Inches", "ControllerSide")
- Config file: OpenNest.Posts.Cincinnati.json in the Posts/ directory

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-03-23 00:08:31 -04:00
parent da8e7e6fd3
commit 5936272ce4
7 changed files with 88 additions and 3 deletions

View File

@@ -1,4 +1,4 @@
using OpenNest.Posts.Cincinnati;
using OpenNest.CNC;
namespace OpenNest.Tests.Cincinnati;