Fixed a bug where a double empty constructor could be generated for a C# client if there is no fields/properties. Bumped package version to 1.7.3

This commit is contained in:
MattMo 2023-09-24 19:34:26 -07:00
parent 4c64f1c134
commit b9260dbdb1
2 changed files with 12 additions and 9 deletions

View File

@ -17,7 +17,7 @@
<AssemblyName>MontoyaTech.Rest.Net</AssemblyName>
<RootNamespace>MontoyaTech.Rest.Net</RootNamespace>
<GenerateDocumentationFile>True</GenerateDocumentationFile>
<Version>1.7.2</Version>
<Version>1.7.3</Version>
<PackageReleaseNotes></PackageReleaseNotes>
<PackageIcon>Logo_Symbol_Black_Outline.png</PackageIcon>
</PropertyGroup>

View File

@ -250,17 +250,20 @@ namespace MontoyaTech.Rest.Net
writer.Outdent().WriteLine('}');
//Generate a constructor to set all the fields/properties with optional default values
writer.WriteBreak();
writer.Write($"public {(newName != null ? newName.Name : type.Name)}(");
if (fields.Length > 0 || properties.Length > 0)
{
writer.WriteBreak();
writer.Write($"public {(newName != null ? newName.Name : type.Name)}(");
foreach (var field in fields)
writer.WriteSeparator().Write($"{this.GetTypeFullyResolvedName(field.FieldType)} {field.Name} = {this.GetTypeDefaultValue(field.FieldType)}");
foreach (var field in fields)
writer.WriteSeparator().Write($"{this.GetTypeFullyResolvedName(field.FieldType)} {field.Name} = {this.GetTypeDefaultValue(field.FieldType)}");
foreach (var property in properties)
writer.WriteSeparator().Write($"{this.GetTypeFullyResolvedName(property.PropertyType)} {property.Name} = {this.GetTypeDefaultValue(property.PropertyType)}");
foreach (var property in properties)
writer.WriteSeparator().Write($"{this.GetTypeFullyResolvedName(property.PropertyType)} {property.Name} = {this.GetTypeDefaultValue(property.PropertyType)}");
writer.WriteLine(")");
writer.WriteLine('{').Indent();
writer.WriteLine(")");
writer.WriteLine('{').Indent();
}
foreach (var field in fields)
writer.WriteLine($"this.{field.Name} = {field.Name};");