Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix XML comments on CodeGeneratorSettings #1377

Merged
merged 1 commit into from
Jul 13, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ public CSharpGeneratorSettings()
/// <summary>Gets or sets the name of a static method which is called to transform the JsonSerializerSettings (for Newtonsoft.Json) or the JsonSerializerOptions (for System.Text.Json) used in the generated ToJson()/FromJson() methods (default: null).</summary>
public string JsonSerializerSettingsTransformationMethod { get; set; }

/// <summary>Gets or sets a value indicating whether to render ToJson() and FromJson() methods (default: true).</summary>
/// <summary>Gets or sets a value indicating whether to render ToJson() and FromJson() methods (default: false).</summary>
public bool GenerateJsonMethods { get; set; }

/// <summary>Gets or sets a value indicating whether enums should be always generated as bit flags (default: false).</summary>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ public TypeScriptGeneratorSettings()
InlineNamedDictionaries = false;
}

/// <summary>Gets or sets the target TypeScript version (default: 1.8).</summary>
/// <summary>Gets or sets the target TypeScript version (default: 2.7).</summary>
public decimal TypeScriptVersion { get; set; }

/// <summary>Gets a value indicating whether the target TypeScript version supports strict null checks.</summary>
Expand Down