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:
parent
4c64f1c134
commit
b9260dbdb1
@ -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>
|
||||
|
@ -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};");
|
||||
|
Loading…
x
Reference in New Issue
Block a user