Albert Domenech
                                            Albert Domenech
                                        
                                    one test seems to be failing, can you check it please: [xUnit.net 00:00:07.56] `ACadSharp.Tests.ColorTests.HandlesIndexedColors` [**FAIL**] Skipped ACadSharp.Tests.CadDocumentTests.RemoveLayer [1 ms] Failed ACadSharp.Tests.ColorTests.HandlesIndexedColors [57 ms] Error Message: Assert.True() Failure Expected: True Actual:...
The test also check the method `GetTrueColorRbg` there is when the test does not pass, you changed the method to return a new Color when is not `TrueColor` but this...
Another comment about your PR, in the description you may have found that it was already written, that's a template to follow and modify in case that you want to...
Hi @mlcvista, If you want to save the document in a different version just change the version in the header: ```C# //Example doc.Header.Version = ACadVerson.AC1018; ``` Thanks for your support.
Here is the problem: https://github.com/DomCR/ACadSharp/blob/1d3203b2c38bba9a2340e6258d5e8a1d78c1389a/ACadSharp/IO/DWG/DwgStreamWriters/DwgObjectWriter.Common.cs#L109 By now all UNLISTED are ignored because they have to be related to a `DxfClass` and is currently not impmlemented. Here is how the `DwgReader`...
> What is the DxfClassMap exactly required for? They are needed to specify the type of `CadObject`, you can check the `readUnlistedType(short classNumber)` I'm not sure about the actual use,...
> Good morning @DomCR , I added a WriteCmColor method to `IDxfStreamWriter` and implemented `DxfStreamWriterBase`. Please review these changes in #323 and let me know what you think about this...
Hi @mamaorha, I've test your file, here are the results, DXF:  DWG:  With the DWG I needed to recover the file but it seems that it could be...
Hi @mattbrownfaro The branch [DxfWriter-Full-refactor](https://github.com/DomCR/ACadSharp/tree/DxfWriter-Full-refactor) is currently in development, all the exceptions are expected, when the task is completed and merge this should work fine the **ALFA Sportwagon-4 views** file....
This issue seems to be bigger than I expected, the file that is failing is because is in an older version `AC1009` which is not supported by `ACadSharp` at the...