We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0e0c08b commit 586e2a1Copy full SHA for 586e2a1
2 files changed
libEDSsharp/CanOpenXDD.cs
@@ -1186,7 +1186,7 @@ public EDSsharp convert(ISO15745ProfileContainer container)
1186
case "FileRevision":
1187
byte.TryParse(keyvalue[1], out eds.fi.FileVersion);
1188
break;
1189
- case "RevisionNum":
+ case "RevisionNumber":
1190
byte.TryParse(keyvalue[1], out eds.fi.FileRevision);
1191
1192
}
libEDSsharp/eds.cs
@@ -589,6 +589,13 @@ public partial class FileInfo : InfoSection
589
[EdsExport]
590
public byte FileRevision;//=1
591
592
+ /// <summary>
593
+ /// indicate the file version as a vendor-specific string
594
+ /// </summary>
595
+ [EdsExport(commentonly = true)]
596
+ public string fileVersionString = "";
597
+
598
599
[DcfExport]
600
public string LastEDS = "";
601
0 commit comments