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
Copy file name to clipboardExpand all lines: src/Microsoft.Windows.CsWin32/GeneratorOptions.cs
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -20,10 +20,10 @@ public record GeneratorOptions
20
20
publicstringClassName{get;set;}="PInvoke";
21
21
22
22
/// <summary>
23
-
/// Gets or sets a value indicating whether to emit a single source file as opposed to types spread across many files.
23
+
/// Gets or sets a value indicating whether to emit a single source file as opposed to types spread across many files, 'null' indicates to use the recommended default for the environment.
24
24
/// </summary>
25
-
/// <value>The default value is <see langword="false" />.</value>
26
-
publicboolEmitSingleFile{get;set;}
25
+
/// <value>The default value is <see langword="null" />.</value>
26
+
publicbool?EmitSingleFile{get;set;}
27
27
28
28
/// <summary>
29
29
/// Gets or sets a value indicating whether to expose the generated APIs publicly (as opposed to internally).
0 commit comments