Skip to content

Commit b3cd7db

Browse files
committed
Added upperValue
1 parent fb5c132 commit b3cd7db

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

MtconnectTranspiler/MtconnectTranspiler.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<Nullable>enable</Nullable>
77
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
88
<Title>MTConnect Transpiler</Title>
9-
<Version>2.5.1-pre1</Version>
9+
<Version>2.5.1-pre2</Version>
1010
<Authors>mtconnect, tbm0115</Authors>
1111
<Company>MTConnect Institute; TAMS;</Company>
1212
<Description>A library capable of parsing an XMI for the MTConnect Standard and passing it to an implemented transpiler.</Description>

MtconnectTranspiler/Xmi/UML/UmlProperty.cs

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,12 @@ public class UmlProperty : OwnedAttribute
5454
[XmlElement(ElementName = XmlHelper.XmiStructure.LOWER_VALUE, Namespace = "")]
5555
public LowerValue? LowerValue { get; set; }
5656

57+
/// <summary>
58+
/// Child <inheritdoc cref="MtconnectTranspiler.Xmi.UpperValue"/>
59+
/// </summary>
60+
[XmlElement(ElementName = XmlHelper.XmiStructure.UPPER_VALUE, Namespace = "")]
61+
public UpperValue? UpperValue { get; set; }
62+
5763
/// <summary>
5864
/// Child <inheritdoc cref="MtconnectTranspiler.Xmi.DefaultValue"/>
5965
/// </summary>

0 commit comments

Comments
 (0)