We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
AIXM schema in repository is actually an example of this.
Current behavior:
This interpolation attribute is typed as an enum, and it has a fixed value of linear:
interpolation
linear
<attribute name="interpolation" type="gml:CurveInterpolationType" fixed="linear"/>
In generated C# code, there's an issue because the fixed value is generated as a string, which creates problem in setter code:
The fix would be to generate the static fixed value field with enum type instead of string. I'll try to create a PR.
The text was updated successfully, but these errors were encountered:
Fixes mamift#68 and add support for element default/fixed values
c9f408f
e7da3b0
Successfully merging a pull request may close this issue.
AIXM schema in repository is actually an example of this.
Current behavior:
This
interpolation
attribute is typed as an enum, and it has a fixed value oflinear
:In generated C# code, there's an issue because the fixed value is generated as a string, which creates problem in setter code:
The fix would be to generate the static fixed value field with enum type instead of string. I'll try to create a PR.
The text was updated successfully, but these errors were encountered: