Fixed an accidental bug introduced to the client generation. Bumped package version to 1.7.4
This commit is contained in:
parent
b9260dbdb1
commit
9633e211a1
@ -17,7 +17,7 @@
|
||||
<AssemblyName>MontoyaTech.Rest.Net</AssemblyName>
|
||||
<RootNamespace>MontoyaTech.Rest.Net</RootNamespace>
|
||||
<GenerateDocumentationFile>True</GenerateDocumentationFile>
|
||||
<Version>1.7.3</Version>
|
||||
<Version>1.7.4</Version>
|
||||
<PackageReleaseNotes></PackageReleaseNotes>
|
||||
<PackageIcon>Logo_Symbol_Black_Outline.png</PackageIcon>
|
||||
</PropertyGroup>
|
||||
|
@ -263,15 +263,15 @@ namespace MontoyaTech.Rest.Net
|
||||
|
||||
writer.WriteLine(")");
|
||||
writer.WriteLine('{').Indent();
|
||||
|
||||
foreach (var field in fields)
|
||||
writer.WriteLine($"this.{field.Name} = {field.Name};");
|
||||
|
||||
foreach (var property in properties)
|
||||
writer.WriteLine($"this.{property.Name} = {property.Name};");
|
||||
|
||||
writer.Outdent().WriteLine('}');
|
||||
}
|
||||
|
||||
foreach (var field in fields)
|
||||
writer.WriteLine($"this.{field.Name} = {field.Name};");
|
||||
|
||||
foreach (var property in properties)
|
||||
writer.WriteLine($"this.{property.Name} = {property.Name};");
|
||||
|
||||
writer.Outdent().WriteLine('}');
|
||||
}
|
||||
|
||||
//Generate C# for any types that belong to this one.
|
||||
|
Loading…
x
Reference in New Issue
Block a user