Skip to content

Commit 78ff980

Browse files
committed
More review fixes
1 parent f0c2cdd commit 78ff980

2 files changed

Lines changed: 4 additions & 5 deletions

File tree

README.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -90,11 +90,10 @@ Options:
9090
Lines starting with # and empty lines are
9191
ignored.
9292
-o, --output=FOLDER the FOLDER to write the resulting .cs files to
93-
-d, --datetime-offset map xs:datetime and derived types to System.
93+
-d, --datetime-offset map xs:datetime, xs:date and xs:time to System.
9494
DateTimeOffset instead of System.DateTime
95-
--do, --dateOnly map xs:date and xs:time and derived types to
96-
System.DateOnly and System.TimeOnly instead of
97-
System.DateTime
95+
--do, --dateOnly map xs:date and xs:time to System.DateOnly and
96+
System.TimeOnly instead of System.DateTime
9897
-i, --integer=TYPE map xs:integer and derived types to TYPE instead
9998
of automatic approximation
10099
TYPE can be i[nt], l[ong], or d[ecimal]

XmlSchemaClassGenerator/GeneratorConfiguration.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ public NamingScheme NamingScheme
160160
/// </summary>
161161
public bool DateTimeWithTimeZone { get; set; } = false;
162162
/// <summary>
163-
/// Generate .NET 6.0 DateOnly and TimeOnly properties for xs:time and xs:date elements
163+
/// Generate DateOnly and TimeOnly properties for xs:time and xs:date elements
164164
/// </summary>
165165
public bool UseDateOnly { get; set; } = false;
166166
/// <summary>

0 commit comments

Comments
 (0)