-
Notifications
You must be signed in to change notification settings - Fork 383
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
Added support for molar flow units #1196
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Good work, tons of new stuff here.
Some comments on precision in conversions mostly, other than that this looks good.
Improve precision of test case
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Great, just a few more minor things
This is most likely failing because of the property marked as obsolete. I had to make a manual change after running the automatic code generation tool. The manual change was on "NumberToHeatTransferCoefficientExtensionsTest.g.cs" for a missing namespace (System.Obsolete) |
@angularsen please have a look, this builds perfectly fine for me |
There is no reason to annotate generated test methods with obsolete attributes. Only the types and methods related to the implementation of the unit needs it, not tests.
@dcasaseca I pushed a fix, reverting the manual changes to generated code and instead fixed the code generator to not emit obsolete attribute for test code. This seemed like a mistake in the existing codegen regarding obsolete units. |
Thank you for the effort, a lot of new stuff here! |
No description provided.