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},
@@ -72,7 +73,8 @@ A file name may be given by appending a pipe sign (|) followed by a file name (l
72
73
{"ct|collectionType=","collection type to use (default is "+typeof(Collection<>).FullName+")", v =>collectionType=v==null?typeof(Collection<>):Type.GetType(v,true)},
73
74
{"cit|collectionImplementationType=","the default collection type implementation to use (default is null)", v =>collectionImplementationType=v==null?null:Type.GetType(v,true)},
74
75
{"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)},
75
-
{"tvpn|textValuePropertyName=","the name of the property that holds the text value of an element (default is Value)", v =>textValuePropertyName=v}
76
+
{"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}
76
78
};
77
79
78
80
varfiles=options.Parse(args);
@@ -113,14 +115,16 @@ A file name may be given by appending a pipe sign (|) followed by a file name (l
0 commit comments