From f04c75235c3f989860c213fe4b6dabb996ecacde Mon Sep 17 00:00:00 2001 From: AJ Isaacs Date: Thu, 19 Feb 2026 14:13:06 -0500 Subject: [PATCH] fix: enable CreateDefaults on DxfReader to fix missing ACAD_GROUP dictionary SolidWorks DXF exports don't include the ACAD_GROUP entry in the Named Object Dictionary. Without it, AutoCAD reports "GroupTable dictionary was not defined in NamedObject dictionary" when opening the file. Co-Authored-By: Claude Opus 4.6 --- EtchBendLines/Etcher.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/EtchBendLines/Etcher.cs b/EtchBendLines/Etcher.cs index c722b62..cf019da 100644 --- a/EtchBendLines/Etcher.cs +++ b/EtchBendLines/Etcher.cs @@ -34,6 +34,7 @@ namespace EtchBendLines try { using var reader = new DxfReader(path); + reader.Configuration.CreateDefaults = true; return reader.Read() ?? throw new InvalidOperationException("DXF load returned null"); }