You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In v3.4.4, I find the generated code is generating duplicated fields in ParentType. This causes CS0108: OneField of ParentType hides inherited member OneField of ChildType.
The text was updated successfully, but these errors were encountered:
hieu-informatics
changed the title
[regression in v3.4.4] error CS0108: OneField of ParentType hides inherited member OneField of ChildType
[regression in v3.4.3+] error CS0108: OneField of ParentType hides inherited member OneField of ChildType
Feb 2, 2024
In v3.4.4, I find the generated code is generating duplicated fields in ParentType. This causes CS0108: OneField of ParentType hides inherited member OneField of ChildType.
Sample XSD file:
<xs:complexType name="ParentType">
<xs:complexContent mixed="false">
<xs:extension base="lsr:ChildType">
xs:sequence
<xs:element minOccurs="1" maxOccurs="1" name="OneField" type="xs:long"/>
....
The text was updated successfully, but these errors were encountered: