We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4dc7b98 commit 2a12802Copy full SHA for 2a12802
src/ConfigGen/Program.cs
@@ -346,10 +346,12 @@ static string createProperties(IEnumerable<PropertySpecification> props)
346
var nullableType = type == "string" ? "string" : type + "?";
347
348
codeText += $" /// <summary>\n";
349
+ codeText += $" /// <![CDATA[\n";
350
codeText += $" /// {prop.Description}\n";
351
codeText += $" ///\n";
352
codeText += $" /// default: {(prop.Default == "" ? "''" : prop.Default)}\n";
353
codeText += $" /// importance: {prop.Importance}\n";
354
+ codeText += $" /// ]]>\n";
355
codeText += $" /// </summary>\n";
356
codeText += $" public {nullableType} {ConfigNameToDotnetName(prop.Name)} {{ get {{ return ";
357
switch (type)
0 commit comments