Docx2Src / Serialize.OpenXml.CodeGen

.NET assembly class responsible for converting OpenXml based documents into corrisponding dotnet code
MIT License
39 stars 6 forks source link

Error related to too many generated variables #4

Closed rmboggs closed 3 years ago

rmboggs commented 3 years ago

This error is difficult to recreate unless the file being recreated is very large, such as a spreadsheet with multiple large datasets.

There is a small possibility that the amount of generated variables will exceed the allowed amount as dictated by dotnet. This is rare but should be addressed to achieve one of the goals of this project. (i.e.: To successfully recreate as many Microsoft Office documents as possible to their entirety without errors using the code generated by this library).

One possible solution to this is to allow the library to reuse variables already generated when possible but that will take time to work on.

rmboggs commented 3 years ago

Issue should be resolved now with 13dfd56b1645e998648b2fcceda6d580386b55c3 commit