-
Notifications
You must be signed in to change notification settings - Fork 15
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
XObjectsCore references CodeDom #24
Comments
Hello, yes I'm aware of this and did try separating out the C# code that only does code generation to it's own library in an attempt to bring down the .NET Standard version for the output code, but was never able to finish. I can't specifically recall the reasons why, but I think a few interfaces were shared between the code that handled typed XML traversal and code that does code generation, and a proper & clean split that would've meant 3 libraries instead of just 2. I thought at the time that was unnecessary, but I'm not philosophically opposed to it if that's what it takes to separate out the code. |
I'm interested in at least giving it a shot, if it doesn't get ridiculously messy. Is there any list or way to know what classes / public API the generated code actually needs? Or at least some roots and I'll work transitively from that? Figuring out from the code generator what API might be used in every situation is kind of hard. :( |
I had a glance at the project structure. So currently we have: Looks like the shared code in I would try to:
I would not remove any public API, nor rename them nor the namespaces. Just try to move stuff around and do the minimal changes required to cut the dependency on CodeDom from |
XObjectsCore
is a runtime requirement for the code generated by this project.It feels wrong that it references
System.CodeDom
, which would be better not embedded into our applications.Do you think it would be hard to correct the layering and have a CodeDom dependency for the code generation only?
The text was updated successfully, but these errors were encountered: