I noticed the curtain wall converter wasn't consistently exporting — sometimes I would get nothing, other times I would get only one curtain wall.
This was due to ID conflicts — curtain wall elements were all being stored under Guid.Empty. This creates a new guid for relevant elements in the converter. I tested and after this change was able to see all expected elements.
(This may ultimately be the fault of Elements — we may have changed our handling of guids to not automatically generate one if we encounter Empty at some point. but in any case, this is needed now.)
I noticed the curtain wall converter wasn't consistently exporting — sometimes I would get nothing, other times I would get only one curtain wall.
This was due to ID conflicts — curtain wall elements were all being stored under
Guid.Empty
. This creates a new guid for relevant elements in the converter. I tested and after this change was able to see all expected elements.(This may ultimately be the fault of
Elements
— we may have changed our handling of guids to not automatically generate one if we encounterEmpty
at some point. but in any case, this is needed now.)This change is