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
{"h|help","show this message and exit", v =>showHelp=v!=null},
@@ -74,7 +75,8 @@ A file name may be given by appending a pipe sign (|) followed by a file name (l
74
75
{"cit|collectionImplementationType=","the default collection type implementation to use (default is null)", v =>collectionImplementationType=v==null?null:Type.GetType(v,true)},
75
76
{"ctro|codeTypeReferenceOptions=","the default CodeTypeReferenceOptions Flags to use (default is unset; can be: {GlobalReference, GenericTypeParameter})", v =>codeTypeReferenceOptions=v==null?default(CodeTypeReferenceOptions):(CodeTypeReferenceOptions)Enum.Parse(typeof(CodeTypeReferenceOptions),v,false)},
76
77
{"tvpn|textValuePropertyName=","the name of the property that holds the text value of an element (default is Value)", v =>textValuePropertyName=v},
77
-
{"dst|debuggerStepThrough","generate DebuggerStepThroughAttribute (default is enabled)", v =>generateDebuggerStepThroughAttribute=v!=null}
78
+
{"dst|debuggerStepThrough","generate DebuggerStepThroughAttribute (default is enabled)", v =>generateDebuggerStepThroughAttribute=v!=null},
79
+
{"dc|disableComments","do not include comments from xsd", v =>disableComments=v!=null},
78
80
};
79
81
80
82
varfiles=options.Parse(args);
@@ -116,7 +118,8 @@ A file name may be given by appending a pipe sign (|) followed by a file name (l
0 commit comments